PIbd-21_Eliseev_E.E._Airbus.../Project/src/PlaneNotFoundException.java

11 lines
394 B
Java
Raw Normal View History

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