001    package sale;
002    
003    /**
004     * Exception thrown by a FormSheet when trying to add a button with an ID that is already being used
005     * in the FormSheet.
006     *
007     * @see FormSheet
008     *
009     * @author Steffen Zschaler
010     * @version 2.0 27/05/1999
011     * @since v2.0
012     */
013    public class DuplicateButtonIDError extends RuntimeException {
014    
015        /**
016             * ID for serialization.
017             */
018            private static final long serialVersionUID = 8495167756318741726L;
019    
020            /**
021         * Create a new DuplicateButtonIDError.
022         */
023        public DuplicateButtonIDError(String sMessage) {
024            super(sMessage);
025        }
026    }