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.
-
NamingSecurityException()
- Constructs a new instance of NamingSecurityException.
-
NamingSecurityException(Name, Object, Name)
- Constructs a new instance of NamingSecurityException using the
arguments supplied.
-
NamingSecurityException(Name, Object, Name, String)
- Constructs a new instance of NamingSecurityException.
-
NamingSecurityException(String)
- Constructs a new instance of NamingSecurityException using the
arguments supplied.
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.
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.
NamingSecurityException
public NamingSecurityException(String explanation)
- Constructs a new instance of NamingSecurityException using the
arguments supplied.
- Parameters:
- explanation - Additional detail about this exception.
NamingSecurityException
public NamingSecurityException()
- Constructs a new instance of NamingSecurityException.
All Packages Class Hierarchy This Package Previous Next Index