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@67: package de.intevation.gnv.chart.exception; tim@171: tim@67: /** ingo@767: * @author Tim Englich sascha@778: * tim@67: */ tim@67: public class TechnicalChartException extends Exception { tim@67: tim@67: /** tim@67: * The UID of this Class tim@67: */ tim@67: private static final long serialVersionUID = -5325863742368006109L; tim@67: tim@67: /** tim@67: * Constructor tim@67: */ tim@67: public TechnicalChartException() { tim@67: } tim@67: tim@67: /** tim@67: * Constructor sascha@778: * tim@67: * @param message tim@67: */ tim@67: public TechnicalChartException(String message) { tim@67: super(message); tim@67: } tim@67: tim@67: /** tim@67: * Constructor sascha@778: * tim@67: * @param cause tim@67: */ tim@67: public TechnicalChartException(Throwable cause) { tim@67: super(cause); tim@67: } tim@67: tim@67: /** tim@67: * Constructor sascha@778: * tim@67: * @param message tim@67: * @param cause tim@67: */ tim@67: public TechnicalChartException(String message, Throwable cause) { tim@67: super(message, cause); tim@67: } tim@67: tim@67: } sascha@836: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :