package Common.Passes;
public class PassException extends Exception {
//штатное исключение
public PassException(String text) {
super(text);
}