This commit is contained in:
2025-12-21 17:24:54 +08:00
commit e8c50a3d78
660 changed files with 29599 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.inmind.s_test_05;
// 自定义异常3账户锁定异常
class AccountLockedException extends Exception {
public AccountLockedException(String msg) {
super(msg);
}
}