Files
javaSE1001/day01/src/com/inmind/s_test_05/AccountLockedException.java
2025-12-21 17:24:54 +08:00

8 lines
196 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 com.inmind.s_test_05;
// 自定义异常3账户锁定异常
class AccountLockedException extends Exception {
public AccountLockedException(String msg) {
super(msg);
}
}