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         * Create a new DuplicateButtonIDError.
017         */
018        public DuplicateButtonIDError(String sMessage) {
019            super(sMessage);
020        }
021    }