package de.mpg.mpiz_koeln.featureClient;

/**
 * Exception which is thrown in the featureClient project if exceptions occur.
 * 
 * @author <A HREF="mailto:andreas.groscurth@gmail.com">Andreas Groscurth</A>
 */
public class FeatureClientException extends Exception {
    private static final long serialVersionUID = -367172933470417369L;

    public FeatureClientException() {
    }

    public FeatureClientException( String message ) {
        super( message );
    }

    public FeatureClientException( Throwable cause ) {
        super( cause );
    }

    public FeatureClientException( String message, Throwable cause ) {
        super( message, cause );
    }
}
