package com.bcxin.Infrastructures.exceptions;

public class BadTenantException extends TenantExceptionAbstract{
    private static final long serialVersionUID = 2L;
    public BadTenantException(String msg) {
        super(msg);
    }

    public BadTenantException(String msg,Exception ex) {
        super(msg, ex);
    }
}
