001/*
002 *  Copyright 2010 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.plugins.externaldata.data;
017
018/**
019 * Data inclusion exception, used whenever there is an error specific to the plugin.
020 */
021public class DataInclusionException extends Exception
022{
023
024    /**
025     * Data inclusion exception.
026     */
027    public DataInclusionException()
028    {
029        super();
030    }
031    
032    /**
033     * Data inclusion exception.
034     * @param message the error message
035     * @param cause the exception's cause
036     */
037    public DataInclusionException(String message, Throwable cause)
038    {
039        super(message, cause);
040    }
041    
042    /**
043     * Data inclusion exception.
044     * @param message the error message
045     */
046    public DataInclusionException(String message)
047    {
048        super(message);
049    }
050    
051    /**
052     * Data inclusion exception.
053     * @param cause the exception's cause
054     */
055    public DataInclusionException(Throwable cause)
056    {
057        super(cause);
058    }
059
060}