ingo@1022: /* ingo@1022: * Copyright (c) 2010 by Intevation GmbH ingo@1022: * ingo@1022: * This program is free software under the LGPL (>=v2.1) ingo@1022: * Read the file LGPL.txt coming with the software for details ingo@1022: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1022: */ ingo@1022: tim@2: package de.intevation.gnv.artifactdatabase.client.exception; tim@36: tim@2: /** ingo@690: * Exception used for general errors in the artifact server. ingo@690: * sascha@684: * @author Tim Englich sascha@681: * tim@2: */ tim@2: public class ArtifactDatabaseClientException extends Exception { tim@2: tim@2: /** tim@2: * The UID of this Class tim@2: */ tim@2: private static final long serialVersionUID = -8979622024425251952L; tim@2: tim@2: /** tim@2: * Constructor tim@2: */ tim@2: public ArtifactDatabaseClientException() { tim@2: super(); tim@2: } tim@2: tim@2: /** tim@2: * Constructor sascha@681: * tim@2: * @param arg0 tim@2: */ tim@2: public ArtifactDatabaseClientException(String arg0) { tim@2: super(arg0); tim@2: } tim@2: tim@2: /** tim@2: * Constructor sascha@681: * tim@2: * @param arg0 tim@2: */ tim@2: public ArtifactDatabaseClientException(Throwable arg0) { tim@2: super(arg0); tim@2: } tim@2: tim@2: /** tim@2: * Constructor sascha@681: * tim@2: * @param arg0 tim@2: * @param arg1 tim@2: */ tim@2: public ArtifactDatabaseClientException(String arg0, Throwable arg1) { tim@2: super(arg0, arg1); tim@2: } tim@2: } sascha@700: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :