KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openlaszlo > auth > AuthenticationException


1 /* *****************************************************************************
2  * AuthenticationException.java
3 * ****************************************************************************/

4
5 /* J_LZ_COPYRIGHT_BEGIN *******************************************************
6 * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
7 * Use is subject to license terms. *
8 * J_LZ_COPYRIGHT_END *********************************************************/

9
10 package org.openlaszlo.auth;
11
12 /**
13  * Authorization exception class.
14  */

15 public class AuthenticationException
16     extends Exception JavaDoc
17 {
18     public AuthenticationException()
19     {
20         super();
21     }
22
23     public AuthenticationException(String JavaDoc s)
24     {
25         super(s);
26     }
27 }
28
Popular Tags