PIbd-12_Karamushko_M.K._Air.../AircraftNotFoundException.java

16 lines
445 B
Java
Raw Permalink Normal View History

2022-12-15 13:56:38 +03:00
class AircraftNotFoundException extends RuntimeException
{
public AircraftNotFoundException(int i) {
super("Не найден объект по позиции " + i);
}
public AircraftNotFoundException() {
super();
}
public AircraftNotFoundException(String message) {
super(message);
}
public AircraftNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}