Author: glandais Date: 2008-02-15 16:25:38 +0000 (Fri, 15 Feb 2008) New Revision: 1007 Added: trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/SimExplorerBusinessException.java Log: Modified exception mechanism Added: trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/SimExplorerBusinessException.java =================================================================== --- trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/SimExplorerBusinessException.java (rev 0) +++ trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/SimExplorerBusinessException.java 2008-02-15 16:25:38 UTC (rev 1007) @@ -0,0 +1,65 @@ +/* +* ##% Copyright (C) 2008 Code Lutin, Gabriel Landais +* +* This program is free software; you can redistribute it and/or +* modify it under the terms of the GNU General Public License +* as published by the Free Software Foundation; either version 2 +* of the License, or (at your option) any later version. +* +* This program 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 General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with this program; if not, write to the Free Software +* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +* ##% */ +package fr.cemagref.simexplorer.is.exceptions; + +/** + * The Class SimExplorerBusinessException. + */ +public class SimExplorerBusinessException extends SimExplorerException { + + /** + * + */ + private static final long serialVersionUID = 3302304257020920119L; + + /** + * Instantiates a new sim explorer business exception. + */ + public SimExplorerBusinessException() { + super(); + } + + /** + * Instantiates a new sim explorer business exception. + * + * @param cause the cause + */ + public SimExplorerBusinessException(Throwable cause) { + super(cause); + } + + /** + * Instantiates a new sim explorer business exception. + * + * @param message the message + */ + public SimExplorerBusinessException(String message) { + super(message); + } + + /** + * Instantiates a new sim explorer business exception. + * + * @param message the message + * @param cause the cause + */ + public SimExplorerBusinessException(String message, Throwable cause) { + super(message, cause); + } + +}