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

AuthenticationException

public class AuthenticationException extends Exception
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public AuthenticationException()
Constructs a new Authentication Exception


              
      
        super();
       
    
public AuthenticationException(String arg0)
Constructs a new Authentication Exception with the specified detail message

param
arg0 - detail message

        super(arg0);
       
    
public AuthenticationException(String arg0, Throwable arg1)
Constructs a new Authentication Exception with the specified detail message and nested exception caused this exception.

param
arg0 - detail message
param
arg1 - nested exception

        super(arg0, arg1);
       
    
public AuthenticationException(Throwable arg0)
Constructs a new Authentication Exception with a nested exception caused this exception

param
arg0 - nested exception

        super(arg0);
       
    
Methods Summary