Author: tchemit Date: 2008-02-19 13:54:44 +0000 (Tue, 19 Feb 2008) New Revision: 1116 Added: trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/UnreachableServiceException.java Log: ajout exception pour indiquer qu'on arrive pas a joindre un service Added: trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/UnreachableServiceException.java =================================================================== --- trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/UnreachableServiceException.java (rev 0) +++ trunk/simexplorer-is/simexplorer-is-storage/src/java/fr/cemagref/simexplorer/is/exceptions/UnreachableServiceException.java 2008-02-19 13:54:44 UTC (rev 1116) @@ -0,0 +1,42 @@ +/* +* \#\#% Copyright (C) 2007, 2008 Code Lutin, Tony Chemit, 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; + +/** + * TODO javadoc + * + * @author chemit + */ +public class UnreachableServiceException extends SimExplorerRuntimeException { + private static final long serialVersionUID = -6740529102758721136L; + + public UnreachableServiceException() { + } + + public UnreachableServiceException(Throwable cause) { + super(cause); + } + + public UnreachableServiceException(String message) { + super(message); + } + + public UnreachableServiceException(String message, Throwable cause) { + super(message, cause); + } +}