javax.naming
public class: InvalidNameException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.InvalidNameException
All Implemented Interfaces:
Serializable
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.
Constructor: |
public InvalidNameException() {
super();
}
Constructs an instance of InvalidNameException with
all fields set to null. |
public InvalidNameException(String explanation) {
super(explanation);
}
Constructs an instance of InvalidNameException using an
explanation of the problem.
All other fields are initialized to null. Parameters:
explanation - A possibly null message explaining the problem.
Also see:
- java.lang.Throwable#getMessage
|
Methods from javax.naming.NamingException: |
---|
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString |
Methods from java.lang.Throwable: |
---|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getStackTraceDepth, getStackTraceElement, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |