BaseBusinessException.java

package com.tradecloud.domain.exception;

/**
 * Base class for business exceptions within the system.  All specific runtime business exceptions in the application should extend this class.
 */
public class BaseBusinessException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public BaseBusinessException(String message) {
        super(message);
    }

    public BaseBusinessException(Throwable t) {
        super(t);
    }

    public BaseBusinessException(String message, Throwable t) {
        super(message, t);
    }
}