package com.bcxin.Infrastructures.exceptions;

public class NotAllowedTenantException extends TenantExceptionAbstract {
    private static final long serialVersionUID = 7L;
    public NotAllowedTenantException() {
        super("不允许操作!");
    }

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