comparison flys-client/src/main/java/de/intevation/flys/client/shared/exceptions/AuthenticationException.java @ 216:4b0fb079ead9

Added an exception class that should be used if the user authentication fails. flys-client/trunk@1658 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 08 Apr 2011 09:51:41 +0000
parents
children
comparison
equal deleted inserted replaced
215:e02f50a3ad59 216:4b0fb079ead9
1 package de.intevation.flys.client.shared.exceptions;
2
3 import java.io.Serializable;
4
5
6 /**
7 * This exception class is used if an error occured while user authentication.
8 *
9 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
10 */
11 public class AuthenticationException
12 extends Exception
13 implements Serializable
14 {
15 public AuthenticationException() {
16 }
17
18
19 public AuthenticationException(String msg) {
20 super(msg);
21 }
22 }
23 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org