package com.bcxin.Infrastructures.exceptions;

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

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