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@173: package de.intevation.gnv.utils.exception; sascha@779: tim@173: /** sascha@780: * @author Tim Englich tim@173: * tim@173: */ tim@173: public class ValidationException extends Exception { tim@173: tim@173: /** tim@173: * The Uid of this Class tim@173: */ tim@173: private static final long serialVersionUID = -6189218101861801079L; tim@173: tim@173: /** tim@173: * Constructor tim@173: */ tim@173: public ValidationException() { tim@173: super(); tim@173: } tim@173: tim@173: /** tim@173: * Constructor tim@173: * @param arg0 tim@173: */ tim@173: public ValidationException(String arg0) { tim@173: super(arg0); tim@173: } tim@173: tim@173: /** tim@173: * Constructor tim@173: * @param arg0 tim@173: */ tim@173: public ValidationException(Throwable arg0) { tim@173: super(arg0); tim@173: } tim@173: tim@173: /** tim@173: * Constructor tim@173: * @param arg0 tim@173: * @param arg1 tim@173: */ tim@173: public ValidationException(String arg0, Throwable arg1) { tim@173: super(arg0, arg1); tim@173: } tim@173: tim@173: }