package com.bcxin.Infrastructures.exceptions;

public class RetryableTenantException extends TenantExceptionAbstract{
    private static final long serialVersionUID = 10L;
    public RetryableTenantException(){}

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