DuplicateSABSSlidingScaleException.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 DuplicateSABSSlidingScaleException extends InvalidEntityException {

    private static final long serialVersionUID = 1L;

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