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