javax.naming
Class CannotProceedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javax.naming.NamingException
                    |
                    +--javax.naming.CannotProceedException
All Implemented Interfaces:
Serializable
public class CannotProceedException
extends NamingException

Thrown to indicate that the operation reached a point in the name where the operation cannot proceed any further. When performing an operation on a composite name, a naming service provider may reach a part of the name that does not belong to its namespace. At that point, it can construct a CannotProceedException and then invoke methods provided by javax.naming.spi.NamingManager (such as getContinuationContext()) to locate another provider to continue the operation. If this is not possible, this exception is raised to the caller of the context operation.

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.

Since:
1.3
See Also:
Serialized Form

 

Field Summary

protected  Name altName
    Contains the name of the resolved object, relative to the context altNameCtx.
protected  Context altNameCtx
    Contains the context relative to which altName is specified.
protected  Hashtable environment
    Contains the environment relevant for the Context or DirContext method that cannot proceed.
protected  Name remainingNewName
    Contains the remaining unresolved part of the second "name" argument to Context.rename().
 
Fields inherited from class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
 

 

Constructor Summary

CannotProceedException()
    Constructs a new instance of CannotProceedException.
CannotProceedException(String explanation)
    Constructs a new instance of CannotProceedException using an explanation.
 

 

Method Summary

 Name getAltName()
    Retrieves the altName field of this exception.
 Context getAltNameCtx()
    Retrieves the altNameCtx field of this exception.
 Hashtable getEnvironment()
    Retrieves the environment that was in effect when this exception was created.
 Name getRemainingNewName()
    Retrieves the "remaining new name" field of this exception, which is used when this exception is thrown during a rename() operation.
 void