FileDocCategorySizeDatePackage
AuthenticatorException.javaAPI DocApache Lucene 2.1.02178Wed Feb 14 10:46:06 GMT 2007org.apache.lucene.gdata.server.authentication

AuthenticatorException

public class AuthenticatorException extends RuntimeException
This exception will be thrown by {@link org.apache.lucene.gdata.server.authentication.AuthenticationController} implementations if an error while de/encrypting the token occures.
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public AuthenticatorException()
Constructs a new Authenticator Exception


               
      
        super();
        
    
public AuthenticatorException(String arg0)
Constructs a new Authenticator Exception with the specified detail message.

param
arg0 - detail message

        super(arg0);
        
    
public AuthenticatorException(String arg0, Throwable arg1)
Constructs a new Authenticator Exception with the specified detail message and nested exception.

param
arg0 - detail message
param
arg1 - nested exception

        super(arg0, arg1);
        
    
public AuthenticatorException(Throwable arg0)
Constructs a new Authenticator Exception with a nested exception caused this exception.

param
arg0 - nested exception

        super(arg0);
        
    
Methods Summary