001    package data;
002    
003    /**
004     * An exception thrown when a catalog conflict was detected. A catalog conflict occurs when operations that
005     * work on two {@link Stock Stocks} are to work on two Stocks that have different {@link Catalog Catalogs}.
006     *
007     * @author Steffen Zschaler
008     * @version 2.0 18/08/1999
009     * @since v2.0
010     */
011    public class CatalogConflictException extends RuntimeException {
012    
013        /**
014         * Create a new CatalogConflictException.
015         */
016        public CatalogConflictException() {
017            super();
018        }
019    
020        /**
021         * Create a new CatalogConflictException with a detail message.
022         *
023         * @param sDetail the detail message.
024         */
025        public CatalogConflictException(String sDetail) {
026            super(sDetail);
027        }
028    }