DuplicateSABSTariffException.java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.tradecloud.domain.sabs;
import com.tradecloud.domain.exception.InvalidEntityException;
/**
* This exception is for when the user tries and creates a duplicate SABS Sliding Scale.
*/
public class DuplicateSABSTariffException extends InvalidEntityException {
private static final long serialVersionUID = 1L;
public DuplicateSABSTariffException(String message) {
super(message);
}
}