package com.inmind.s_test_05; // 自定义异常3:账户锁定异常 class AccountLockedException extends Exception { public AccountLockedException(String msg) { super(msg); } }