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