001/**
002 * 
003 */
004package icy.common.exception;
005
006/**
007 * UnsupportedFormatException is the exception thrown when try to load a resource and the format in
008 * not recognized or incorrect.
009 * 
010 * @author Stephane
011 */
012public class UnsupportedFormatException extends Exception
013{
014    /**
015     * 
016     */
017    private static final long serialVersionUID = -1571266483842584203L;
018
019    /**
020     * 
021     */
022    public UnsupportedFormatException()
023    {
024        super();
025    }
026
027    public UnsupportedFormatException(String message)
028    {
029        super(message);
030    }
031
032    public UnsupportedFormatException(Throwable cause)
033    {
034        super(cause);
035    }
036
037    public UnsupportedFormatException(String message, Throwable cause)
038    {
039        super(message, cause);
040    }
041}