All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.NamingSecurityException

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

public abstract class NamingSecurityException
extends NamingException
NamingSecurityException is the superclass of security-related exceptions thrown by operations in the Context interface. The nature of the failure is described by the name of the subclass.


Constructor Index

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

Constructors

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

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 NamingSecurityException
 public NamingSecurityException(Name resolvedName,
                                Object resolvedObj,
                                Name remainingName)
Constructs a new instance of NamingSecurityException 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 NamingSecurityException
 public NamingSecurityException(String explanation)
Constructs a new instance of NamingSecurityException using the arguments supplied.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index