programmazione-java/src/CentroRicerca/IncorrectLabelException.java

13 lines
224 B
Java

package com.gmail.zurlo.michelef.util;
public class IncorrectLabelException extends RuntimeException {
public IncorrectLabelException() {
}
public IncorrectLabelException(String msg) {
super(msg);
}
}