01: /* *****************************************************************************
02: * AuthenticationException.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09:
10: package org.openlaszlo.auth;
11:
12: /**
13: * Authorization exception class.
14: */
15: public class AuthenticationException extends Exception {
16: public AuthenticationException() {
17: super ();
18: }
19:
20: public AuthenticationException(String s) {
21: super(s);
22: }
23: }
|