package com.bcxin.Infrastructures.exceptions;

public class UnexpectedTenantException extends TenantExceptionAbstract {
    private static final long serialVersionUID = 12L;
    protected UnexpectedTenantException(String msg) {
        super(msg);
    }

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