2022-12-02 15:50:44 +04:00
|
|
|
|
public class PlaneNotFoundException extends Exception
|
|
|
|
|
{
|
2022-12-02 18:13:52 +04:00
|
|
|
|
public PlaneNotFoundException(int i) {super ("Не найден объект по позиции " + i); }
|
2022-12-02 15:50:44 +04:00
|
|
|
|
|
|
|
|
|
public PlaneNotFoundException() { super(); }
|
|
|
|
|
|
|
|
|
|
public PlaneNotFoundException(String message) { super(message); }
|
|
|
|
|
|
|
|
|
|
public PlaneNotFoundException(String message, Exception exception) { super(message, exception); }
|
|
|
|
|
}
|