23 lines
558 B
Java
23 lines
558 B
Java
|
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);
|
|||
|
}
|
|||
|
}
|