001    package biz.hammurapi.properties;
002    
003    /**
004     * Wrapper exception if property set operation fails.
005     * @author Pavel
006     *
007     */
008    public class PropertySetException extends Exception {
009    
010            public PropertySetException(String message) {
011                    super(message);
012            }
013    
014            public PropertySetException(Throwable cause) {
015                    super(cause);
016            }
017    
018            public PropertySetException(String message, Throwable cause) {
019                    super(message, cause);
020            }
021    
022    }