23 lines
558 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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);
}
}