CreditorBillingException.java

package com.tradecloud.domain.creditorbilling;

import com.tradecloud.domain.exception.EnumBusinessException;

/**
 * @author jon
 */
public class CreditorBillingException extends EnumBusinessException {

    private static final long serialVersionUID = 1L;

    public CreditorBillingException(CreditorBillingExceptionType creditorBillingExceptionType) {
        super(creditorBillingExceptionType);
    }

    @Override
    public CreditorBillingExceptionType getExceptionType() {
        return cast(CreditorBillingExceptionType.class, exceptionType);
    }

}