KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > util > NotLoggedInException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.util;
11
12 import javax.servlet.ServletException JavaDoc;
13
14 /**
15  * This exception gets thrown when the user hasn't logged in yet.
16  *
17  * @deprecated only used by HttpAuth.
18  * @application SCAN
19  * @move org.mmbase.servlet
20  * @author vpro
21  * @version $Id: NotLoggedInException.java,v 1.7 2004/09/30 14:07:11 pierre Exp $
22  */

23 public class NotLoggedInException extends ServletException JavaDoc {
24
25     //javadoc is inherited
26
public NotLoggedInException() {
27         super();
28     }
29
30     //javadoc is inherited
31
public NotLoggedInException(String JavaDoc message) {
32         super(message);
33     }
34
35     //javadoc is inherited
36
public NotLoggedInException(Throwable JavaDoc cause) {
37         super(cause);
38     }
39
40     //javadoc is inherited
41
public NotLoggedInException(String JavaDoc message, Throwable JavaDoc cause) {
42         super(message, cause);
43     }
44
45 }
46
Popular Tags