All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.AuthenticationException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.naming.NamingException
                           |
                           +----java.naming.NamingSecurityException
                                   |
                                   +----java.naming.AuthenticationException

public class AuthenticationException
extends NamingSecurityException
This exception is raised when an authentication error occurs while performing a naming operation.


Constructor Index

 o AuthenticationException()
Constructs a new instance of AuthenticationException.
 o AuthenticationException(Name, Object, Name)
Constructs a new instance of AuthenticationException using the arguments supplied.
 o AuthenticationException(Name, Object, Name, String)
Constructs a new instance of AuthenticationException.
 o AuthenticationException(String)
Constructs a new instance of AuthenticationException using the arguments supplied.

Constructors

 o AuthenticationException
 public AuthenticationException(Name resolvedName,
                                Object resolvedObj,
                                Name remainingName,
                                String explanation)
Constructs a new instance of AuthenticationException.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
explanation - Additional detail about this exception.
 o AuthenticationException
 public AuthenticationException(Name resolvedName,
                                Object resolvedObj,
                                Name remainingName)
Constructs a new instance of AuthenticationException using the arguments supplied.

Parameters:
resolvedName - The part of the name that has been successfully resolved.
resolvedObj - The object to which resolution was successful.
remainingName - The remaining unresolved portion of the name.
 o AuthenticationException
 public AuthenticationException(String explanation)
Constructs a new instance of AuthenticationException using the arguments supplied.

Parameters:
explanation - Additional detail about this exception.
 o AuthenticationException
 public AuthenticationException()
Constructs a new instance of AuthenticationException.


All Packages  Class Hierarchy  This Package  Previous  Next  Index