tim@67: /**
tim@67:  *
tim@67:  */
tim@67: package de.intevation.gnv.chart.exception;
tim@171: 
tim@67: /**
tim@67:  * @author Tim Englich <tim.englich@intevation.de>
tim@171:  * 
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
tim@171:      * 
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
tim@171:      * 
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
tim@171:      * 
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: }