001    package data;
002    
003    /**
004     * Exception thrown to indicate some operation cannot be performed succesfully because of the isolation rules
005     * associated with {@link DataBasket DataBaskets} and the container.
006     *
007     * @author Steffen Zschaler
008     * @version 2.0 18/08/1999
009     * @since v2.0
010     */
011    public class DataBasketConflictException extends RuntimeException {
012    
013        /**
014             * ID for serialization.
015             */
016            private static final long serialVersionUID = -8211749695437554627L;
017    
018            /**
019         * Create a new DataBasketConflictException.
020         */
021        public DataBasketConflictException() {
022            super();
023        }
024    
025        /**
026         * Create a new DataBasketConflictException with a detail message.
027         *
028         * @param sDetail the detail message.
029         */
030        public DataBasketConflictException(String sDetail) {
031            super(sDetail);
032        }
033    }