001/*
002 *  Copyright 2012 Anyware Services
003 *
004 *  Licensed under the Apache License, Version 2.0 (the "License");
005 *  you may not use this file except in compliance with the License.
006 *  You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 *  Unless required by applicable law or agreed to in writing, software
011 *  distributed under the License is distributed on an "AS IS" BASIS,
012 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 *  See the License for the specific language governing permissions and
014 *  limitations under the License.
015 */
016package org.ametys.core.userpref;
017
018/**
019 * User preferences exception, used whenever there is an error specific to user preferences.
020 */
021public class UserPreferencesException extends Exception
022{
023
024    /**
025     * User preferences exception.
026     */
027    public UserPreferencesException()
028    {
029        super();
030    }
031    
032    /**
033     * User preferences exception.
034     * @param message the message.
035     * @param cause the cause.
036     */
037    public UserPreferencesException(String message, Throwable cause)
038    {
039        super(message, cause);
040    }
041    
042    /**
043     * User preferences exception.
044     * @param message the message.
045     */
046    public UserPreferencesException(String message)
047    {
048        super(message);
049    }
050    
051    /**
052     * User preferences exception.
053     * @param cause the cause.
054     */
055    public UserPreferencesException(Throwable cause)
056    {
057        super(cause);
058    }
059
060}