ingo@1115: /* ingo@1115: * Copyright (c) 2010 by Intevation GmbH ingo@1115: * ingo@1115: * This program is free software under the LGPL (>=v2.1) ingo@1115: * Read the file LGPL.txt coming with the software for details ingo@1115: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1115: */ ingo@1115: tim@597: package de.intevation.gnv.artifacts.services; sascha@779: tim@597: /** tim@820: * ExceprionClass for MetaDataServices. sascha@780: * @author Tim Englich tim@597: * tim@597: */ tim@597: public class MetaDataServiceException extends Exception { tim@597: tim@597: /** tim@597: * The UID of this Class tim@597: */ tim@597: private static final long serialVersionUID = -7489185270678994565L; tim@597: tim@597: /** tim@597: * Constructor tim@597: */ tim@597: public MetaDataServiceException() { tim@597: super(); tim@597: } tim@597: tim@597: /** tim@597: * Constructor tim@597: * @param arg0 tim@597: */ tim@597: public MetaDataServiceException(String arg0) { tim@597: super(arg0); tim@597: } tim@597: tim@597: /** tim@597: * Constructor tim@597: * @param arg0 tim@597: */ tim@597: public MetaDataServiceException(Throwable arg0) { tim@597: super(arg0); tim@597: } tim@597: tim@597: /** tim@597: * Constructor tim@597: * @param arg0 tim@597: * @param arg1 tim@597: */ tim@597: public MetaDataServiceException(String arg0, Throwable arg1) { tim@597: super(arg0, arg1); tim@597: } tim@597: tim@597: } sascha@836: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :