KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > atlassian > seraph > auth > AuthenticatorException


1 package com.atlassian.seraph.auth;
2
3 /**
4  * An exception for all Authenticator related error conditions
5  *
6  * @see Authenticator
7  */

8 public class AuthenticatorException extends Exception JavaDoc
9 {
10     public AuthenticatorException()
11     {
12     }
13
14     public AuthenticatorException(String JavaDoc s)
15     {
16         super(s);
17     }
18 }
19
Popular Tags