view flys-client/src/main/java/de/intevation/flys/client/server/auth/AuthenticationException.java @ 3705:f84ed73311f2

Added UI for minfo bed quality calculation and added new services for overview charts. flys-client/trunk@5444 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 12 Sep 2012 14:32:17 +0000
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