view flys-client/src/main/java/de/intevation/flys/client/server/auth/AuthenticationException.java @ 5607:6e0d122904f9

Explicitly set the content type for the pdf download. This should make the mimetype detection of browsers more robust
author Andre Heinecke <aheinecke@intevation.de>
date Tue, 09 Apr 2013 11:53:47 +0200
parents 1f64ee424f92
children
line wrap: on
line source
package de.intevation.flys.client.server.auth;

/**
 * Base class for Authentication related Exceptions
 */
public class AuthenticationException extends Exception {

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

    public AuthenticationException(Exception e) {
        super(e);
    }
}
// vim: set fileencoding=utf-8 ts=4 sw=4 tw=80:

http://dive4elements.wald.intevation.org