tim@335: package de.intevation.gnv.state.exception;
tim@335: 
tim@335: /**
sascha@780:  * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
sascha@778:  *
tim@335:  */
tim@335: public class StateException extends Exception {
tim@335: 
tim@335:     /**
tim@335:      * The UID of the Class
tim@335:      */
tim@335:     private static final long serialVersionUID = -1635921702746050244L;
tim@335: 
tim@335:     /**
tim@335:      * Constructor
tim@335:      */
tim@335:     public StateException() {
tim@335:         super();
tim@335:     }
tim@335: 
tim@335:     /**
tim@335:      * Constructor
sascha@778:      *
tim@335:      * @param message
tim@335:      */
tim@335:     public StateException(String message) {
tim@335:         super(message);
tim@335:     }
tim@335: 
tim@335:     /**
tim@335:      * Constructor
sascha@778:      *
tim@335:      * @param cause
tim@335:      */
tim@335:     public StateException(Throwable cause) {
tim@335:         super(cause);
tim@335:     }
tim@335: 
tim@335:     /**
tim@335:      * Constructor
sascha@778:      *
tim@335:      * @param message
tim@335:      * @param cause
tim@335:      */
tim@335:     public StateException(String message, Throwable cause) {
tim@335:         super(message, cause);
tim@335:     }
tim@335: 
tim@335: }