package com.bcxin.Infrastructures.exceptions;

public class AccountLockedException extends TenantExceptionAbstract {
    public AccountLockedException() {
        super("账号被锁定!");
    }

    public AccountLockedException(String msg) {
        super(msg);
    }
}
