final project q10

This commit is contained in:
2022-05-24 23:46:41 +08:00
parent 16eacad6a1
commit 621b5c355d
19 changed files with 695 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
public class UnknownUserException extends Exception {
public UnknownUserException(String message) {
super(message);
}
}