FileDocCategorySizeDatePackage
InvalidNameException.javaAPI DocJava SE 5 API1567Fri Aug 26 14:57:38 BST 2005javax.naming

InvalidNameException

public class InvalidNameException extends NamingException
This exception indicates that the name being specified does not conform to the naming syntax of a naming system. This exception is thrown by any of the methods that does name parsing (such as those in Context, DirContext, CompositeName and CompoundName).

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

author
Rosanna Lee
author
Scott Seligman
version
1.7 03/12/19
see
Context
see
javax.naming.directory.DirContext
see
CompositeName
see
CompoundName
see
NameParser
since
1.3

Fields Summary
private static final long
serialVersionUID
Use serialVersionUID from JNDI 1.1.1 for interoperability
Constructors Summary
public InvalidNameException(String explanation)
Constructs an instance of InvalidNameException using an explanation of the problem. All other fields are initialized to null.

param
explanation A possibly null message explaining the problem.
see
java.lang.Throwable#getMessage

	super(explanation);
    
public InvalidNameException()
Constructs an instance of InvalidNameException with all fields set to null.

	super();
    
Methods Summary