Added project exception.

This commit is contained in:
Christian P. MOMON 2016-09-08 02:31:39 +02:00
parent 7c3d2514ea
commit 87ace3a70a

View file

@ -0,0 +1,64 @@
/**
* Copyright (C) 2016 Christian Pierre MOMON
*
* This file is part of Xidyn.
*
* Xidyn is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Xidyn is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Xidyn. If not, see <http://www.gnu.org/licenses/>
*/
package fr.devinsy.xidyn;
/**
*
* @author Christian Pierre MOMON (christian.momon@devinsy.fr)
*/
public class XidynException extends Exception
{
private static final long serialVersionUID = 8498031594322380559L;
/**
*
*/
public XidynException()
{
super();
}
/**
*
* @param message
*/
public XidynException(final String message)
{
super(message);
}
/**
*
* @param message
* @param cause
*/
public XidynException(final String message, final Throwable cause)
{
super(message, cause);
}
/**
*
* @param cause
*/
public XidynException(final Throwable cause)
{
super(cause);
}
}