PIbd-23_Polevoy_S.V._SelfPr.../ArtilleryNotFoundException.java

22 lines
530 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 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);
}
}