tim@67: package de.intevation.gnv.chart.exception;
tim@171: 
tim@67: /**
ingo@767:  * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
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 :