PIbd-12_Karamushko_M.K._Air.../StorageOverflowException.java

16 lines
475 B
Java
Raw Normal View History

2022-12-15 14:56:38 +04:00
class StorageOverflowException extends RuntimeException
{
public StorageOverflowException(int count) {
super("В наборе превышено допустимое количество: " + count);
}
public StorageOverflowException() {
super();
}
public StorageOverflowException(String message) {
super(message);
}
public StorageOverflowException(String message, Throwable cause) {
super(message, cause);
}
}