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

11 lines
394 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.

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