DuplicateSupplierException.java

/*
 * 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 Supplier.
 */
public class DuplicateSupplierException extends InvalidEntityException {

    private static final long serialVersionUID = 1L;

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