22 lines
530 B
Java
22 lines
530 B
Java
public class ArtilleryNotFoundException extends RuntimeException {
|
||
public ArtilleryNotFoundException() {
|
||
|
||
}
|
||
|
||
public ArtilleryNotFoundException(int i) {
|
||
super("Не найден объект по позиции " + i);
|
||
}
|
||
|
||
public ArtilleryNotFoundException(String message) {
|
||
super(message);
|
||
}
|
||
|
||
public ArtilleryNotFoundException(String message, Throwable cause) {
|
||
super(message, cause);
|
||
}
|
||
|
||
public ArtilleryNotFoundException(Throwable cause) {
|
||
super(cause);
|
||
}
|
||
}
|