All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.naming.NameNotFoundException

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

public class NameNotFoundException
extends NamingException
This exception is thrown when a component of the name cannot be resolved because it is not bound.


Constructor Index

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

Constructors

 o NameNotFoundException
 public NameNotFoundException(Name resolvedName,
                              Object resolvedObj,
                              Name remainingName,
                              String explanation)
Constructs a new instance of NameNotFoundException 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.
explanation - Additional detail about this exception.
 o NameNotFoundException
 public NameNotFoundException(Name resolvedName,
                              Object resolvedObj,
                              Name remainingName)
Constructs a new instance of NameNotFoundException 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 NameNotFoundException
 public NameNotFoundException(String explanation)
Constructs a new instance of NameNotFoundException using the arguments supplied.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index