InvalidEntityDatesException.java

package com.tradecloud.domain.exception;

/**
 * This exception should be used when the dates in an entity are in the wrong order.
 *
 * @author jon
 */
public class InvalidEntityDatesException extends InvalidEntityException {

    private static final long serialVersionUID = 1L;

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