From 87ace3a70aa8cc0c014e0d3cb61c9e982ec06bda Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Thu, 8 Sep 2016 02:31:39 +0200 Subject: [PATCH] Added project exception. --- src/fr/devinsy/xidyn/XidynException.java | 64 ++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 src/fr/devinsy/xidyn/XidynException.java diff --git a/src/fr/devinsy/xidyn/XidynException.java b/src/fr/devinsy/xidyn/XidynException.java new file mode 100644 index 0000000..e3a0be2 --- /dev/null +++ b/src/fr/devinsy/xidyn/XidynException.java @@ -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 + */ +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); + } +}