Files
VisualSapfor/src/Common/Database/RepositoryRefuseException.java
2024-10-16 00:04:36 +03:00

8 lines
331 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.
package Common.Database;
public class RepositoryRefuseException extends Exception {
//исключение для "штатных" отказов. например отсутствие объекта с заданным ключом.
public RepositoryRefuseException(String message_in) {
super(message_in);
}
}