no message

This commit is contained in:
2024-10-10 23:57:36 +03:00
parent cde3e1da42
commit a11b7711f7
209 changed files with 380 additions and 218 deletions

View File

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