KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > security > UnknownAuthenticationMethodException


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.security;
11
12 /**
13  * Thrown by the security authentication implementation to indicate an unknown login authentication
14  * 'method/application'.
15  *
16  * @author Michiel Meeuwissen
17  * @version $Id: UnknownAuthenticationMethodException.java,v 1.1 2004/04/19 16:35:28 michiel Exp $
18  * @since MMBase-1.8
19  */

20 public class UnknownAuthenticationMethodException extends org.mmbase.security.SecurityException {
21
22     //javadoc is inherited
23
public UnknownAuthenticationMethodException() {
24         super();
25     }
26
27     //javadoc is inherited
28
public UnknownAuthenticationMethodException(String JavaDoc message) {
29         super(message);
30     }
31
32     //javadoc is inherited
33
public UnknownAuthenticationMethodException(Throwable JavaDoc cause) {
34         super(cause.getClass().getName() + ": " + cause.getMessage());
35         initCause(cause);
36     }
37
38     //javadoc is inherited
39
public UnknownAuthenticationMethodException(String JavaDoc message, Throwable JavaDoc cause) {
40         super(message);
41         initCause(cause);
42     }
43
44 }
45
Popular Tags