tim@57: /** tim@57: * tim@57: */ tim@57: package de.intevation.gnv.transition.exception; tim@57: /** tim@57: * @author Tim Englich tim@57: * tim@57: */ tim@57: public class TransitionException extends Exception { tim@57: tim@57: /** tim@57: * The UID of the Class tim@57: */ tim@57: private static final long serialVersionUID = -1635921702746050244L; tim@57: tim@57: /** tim@57: * Constructor tim@57: */ tim@57: public TransitionException() { tim@57: super(); tim@57: } tim@57: tim@57: /** tim@57: * Constructor tim@57: * @param message tim@57: */ tim@57: public TransitionException(String message) { tim@57: super(message); tim@57: } tim@57: tim@57: /** tim@57: * Constructor tim@57: * @param cause tim@57: */ tim@57: public TransitionException(Throwable cause) { tim@57: super(cause); tim@57: } tim@57: tim@57: /** tim@57: * Constructor tim@57: * @param message tim@57: * @param cause tim@57: */ tim@57: public TransitionException(String message, Throwable cause) { tim@57: super(message, cause); tim@57: } tim@57: tim@57: }