java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.naming.NamingException
javax.naming.CannotProceedException
All Implemented Interfaces:
Serializable
If the program wants to handle this exception in particular, it should catch CannotProceedException explicitly before attempting to catch NamingException.
A CannotProceedException instance is not synchronized against concurrent multithreaded access. Multiple threads trying to access and modify CannotProceedException should lock the object.
Rosanna - LeeScott - Seligman1.3 - | Field Summary | ||
|---|---|---|
| protected Name | remainingNewName | Contains the remaining unresolved part of the second
"name" argument to Context.rename().
This information necessary for
continuing the Context.rename() operation.
This field is initialized to null. It should not be manipulated directly: it should be accessed and updated using getRemainingName() and setRemainingName().
|
| protected Hashtable | environment | Contains the environment
relevant for the Context or DirContext method that cannot proceed.
This field is initialized to null. It should not be manipulated directly: it should be accessed and updated using getEnvironment() and setEnvironment().
|
| protected Name | altName | Contains the name of the resolved object, relative
to the context altNameCtx. It is a composite name.
If null, then no name is specified.
See the javax.naming.spi.ObjectFactory.getObjectInstance
method for details on how this is used.
This field is initialized to null. It should not be manipulated directly: it should be accessed and updated using getAltName() and setAltName().
|
| protected Context | altNameCtx | Contains the context relative to which
altName is specified. If null, then the default initial
context is implied.
See the javax.naming.spi.ObjectFactory.getObjectInstance
method for details on how this is used.
This field is initialized to null. It should not be manipulated directly: it should be accessed and updated using getAltNameCtx() and setAltNameCtx().
|
| Fields inherited from javax.naming.NamingException: |
|---|
| resolvedName, resolvedObj, remainingName, rootException |
| Fields inherited from java.lang.Exception: |
|---|
| serialVersionUID |
| Constructor: |
|---|
|
|
| Method from javax.naming.CannotProceedException Summary: |
|---|
| getAltName, getAltNameCtx, getEnvironment, getRemainingNewName, setAltName, setAltNameCtx, setEnvironment, setRemainingNewName |
| 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: |
|---|
| fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from javax.naming.CannotProceedException Detail: |
|---|
altName field of this exception.
This is the name of the resolved object, relative to the context
altNameCtx. It will be used during a subsequent call to the
javax.naming.spi.ObjectFactory.getObjectInstance method. |
altNameCtx field of this exception.
This is the context relative to which altName is named.
It will be used during a subsequent call to the
javax.naming.spi.ObjectFactory.getObjectInstance method. |
|
|
altName field of this exception. |
altNameCtx field of this exception. |
|
getRemainingNewName().
newName is a composite name. If the intent is to set this field using a compound name or string, you must "stringify" the compound name, and create a composite name with a single component using the string. You can then invoke this method using the resulting composite name.
A copy of |