package com.bcxin.Infrastructures.exceptions;

import java.io.Serializable;

public abstract class TenantExceptionAbstract extends RuntimeException implements Serializable {
    protected TenantExceptionAbstract() {
        super();
    }

    protected TenantExceptionAbstract(String msg) {
        super(msg);
    }

    protected TenantExceptionAbstract(String msg, Exception ex) {
        super(msg,ex);
    }
}
