23 lines
558 B
Java
Raw Normal View History

package ProjectStormtrooper;
public class PlaneNotFoundException extends RuntimeException {
public PlaneNotFoundException() {
}
public PlaneNotFoundException(String message) {
super(message);
}
public PlaneNotFoundException(String message, Throwable exception) {
super(message, exception);
}
public PlaneNotFoundException(Throwable exception) {
super(exception);
}
protected PlaneNotFoundException(int pos) {
super("Не найден объект по позиции " + pos);
}
}