SABSSlidingScaleChangeException.java
package com.tradecloud.domain.sabs;
import com.tradecloud.domain.exception.InvalidEntityException;
/**
* This exception should be thrown when a SABSSlidingScaleChangeException change is rejected due to certain validation checks.
*/
// Can't see where it is used
@Deprecated
public class SABSSlidingScaleChangeException extends InvalidEntityException {
private static final long serialVersionUID = 1L;
public SABSSlidingScaleChangeException(String message) {
super(message);
}
}