KickJava   Java API By Example, From Geeks To Geeks.

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


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 if the user has an invalid password
16  * @deprecated only used by HttpAuth.
17  * @application SCAN
18  * @move org.mmbase.servlet
19  * @version $Id: AuthorizationException.java,v 1.9 2004/09/30 14:07:10 pierre Exp $
20  */

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