package data; /** * An exception thrown when a catalog conflict was detected. A catalog conflict occurs when operations that * work on two {@link Stock Stocks} are to work on two Stocks that have different {@link Catalog Catalogs}. * * @author Steffen Zschaler * @version 2.0 18/08/1999 * @since v2.0 */ public class CatalogConflictException extends RuntimeException { /** * Create a new CatalogConflictException. */ public CatalogConflictException() { super(); } /** * Create a new CatalogConflictException with a detail message. * * @param sDetail the detail message. */ public CatalogConflictException(String sDetail) { super (sDetail); } }