FileDocCategorySizeDatePackage
NameNotFoundException.javaAPI DocJava SE 5 API1322Fri Aug 26 14:57:40 BST 2005javax.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.

Synchronization and serialization issues that apply to NamingException apply directly here.

author
Rosanna Lee
author
Scott Seligman
version
1.7 03/12/19
since
1.3

Fields Summary
private static final long
serialVersionUID
Use serialVersionUID from JNDI 1.1.1 for interoperability
Constructors Summary
public NameNotFoundException(String explanation)
Constructs a new instance of NameNotFoundException using the explanation supplied. All other fields default to null.

param
explanation Possibly null additional detail about this exception.
see
java.lang.Throwable#getMessage

	super(explanation);
    
public NameNotFoundException()
Constructs a new instance of NameNotFoundException. all name resolution fields and explanation initialized to null.

	super();
    
Methods Summary