Class 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.
- Since:
- 1.3
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Name
Contains the name of the resolved object, relative to the contextaltNameCtx
.protected Context
Contains the context relative to whichaltName
is specified.protected Hashtable
<?, ?> Contains the environment relevant for the Context or DirContext method that cannot proceed.protected Name
Contains the remaining unresolved part of the second "name" argument to Context.rename().Fields declared in class NamingException
remainingName, resolvedName, resolvedObj, rootException
Modifier and TypeFieldDescriptionprotected Name
Contains the remaining name that has not been resolved yet.protected Name
Contains the part of the name that has been successfully resolved.protected Object
Contains the object to which resolution of the part of the name was successful.protected Throwable
Contains the original exception that caused this NamingException to be thrown. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new instance of CannotProceedException.CannotProceedException
(String explanation) Constructs a new instance of CannotProceedException using an explanation. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves thealtName
field of this exception.Retrieves thealtNameCtx
field of this exception.Hashtable
<?, ?> Retrieves the environment that was in effect when this exception was created.Retrieves the "remaining new name" field of this exception, which is used when this exception is thrown during a rename() operation.void
setAltName
(Name altName) Sets thealtName
field of this exception.void
setAltNameCtx
(Context altNameCtx) Sets thealtNameCtx
field of this exception.void
setEnvironment
(Hashtable<?, ?> environment) Sets the environment that will be returned when getEnvironment() is called.void
setRemainingNewName
(Name newName) Sets the "remaining new name" field of this exception.Methods declared in class NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
Modifier and TypeMethodDescriptionvoid
Add name as the last component in remaining name.void
appendRemainingName
(Name name) Add components from 'name' as the last components in remaining name.getCause()
Returns the cause of this exception.Retrieves the explanation associated with this exception.Retrieves the remaining unresolved portion of the name.Retrieves the leading portion of the name that was resolved successfully.Retrieves the object to which resolution was successful.Retrieves the root cause of this NamingException, if any.Initializes the cause of this exception to the specified value.void
setRemainingName
(Name name) Sets the remaining name field of this exception.void
setResolvedName
(Name name) Sets the resolved name field of this exception.void
setResolvedObj
(Object obj) Sets the resolved object field of this exception.void
Records the root cause of this NamingException.toString()
Generates the string representation of this exception.toString
(boolean detail) Generates the string representation in more detail.Methods declared in class Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Modifier and TypeMethodDescriptionfinal void
addSuppressed
(Throwable exception) Appends the specified exception to the exceptions that were suppressed in order to deliver this exception.Fills in the execution stack trace.Creates a localized description of this throwable.Returns the detail message string of this throwable.Provides programmatic access to the stack trace information printed byThrowable.printStackTrace()
.final Throwable[]
Returns an array containing all of the exceptions that were suppressed, typically by thetry
-with-resources statement, in order to deliver this exception.void
Prints this throwable and its backtrace to the standard error stream.void
Prints this throwable and its backtrace to the specified print stream.void
Prints this throwable and its backtrace to the specified print writer.void
setStackTrace
(StackTraceElement[] stackTrace) Sets the stack trace elements that will be returned byThrowable.getStackTrace()
and printed byThrowable.printStackTrace()
and related methods.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
remainingNewName
Contains the remaining unresolved part of the second "name" argument to Context.rename(). This information is 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().
- See Also:
-
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().
- See Also:
-
altName
Contains the name of the resolved object, relative to the contextaltNameCtx
. It is a composite name. If null, then no name is specified. See thejavax.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().
- See Also:
-
altNameCtx
Contains the context relative to whichaltName
is specified. If null, then the default initial context is implied. See thejavax.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().
- See Also:
-
-
Constructor Details
-
CannotProceedException
Constructs a new instance of CannotProceedException using an explanation. All unspecified fields default to null.- Parameters:
explanation
- A possibly null string containing additional detail about this exception. If null, this exception has no detail message.- See Also:
-
CannotProceedException
public CannotProceedException()Constructs a new instance of CannotProceedException. All fields default to null.
-
-
Method Details
-
getEnvironment
Retrieves the environment that was in effect when this exception was created.- Returns:
- Possibly null environment property set. null means no environment was recorded for this exception.
- See Also:
-
setEnvironment
Sets the environment that will be returned when getEnvironment() is called.- Parameters:
environment
- A possibly null environment property set. null means no environment is being recorded for this exception.- See Also:
-
getRemainingNewName
Retrieves the "remaining new name" field of this exception, which is used when this exception is thrown during a rename() operation.- Returns:
- The possibly null part of the new name that has not been resolved. It is a composite name. It can be null, which means the remaining new name field has not been set.
- See Also:
-
setRemainingNewName
Sets the "remaining new name" field of this exception. This is the value returned bygetRemainingNewName()
.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
newName
is made and stored. Subsequent changes toname
does not affect the copy in this NamingException and vice versa.- Parameters:
newName
- The possibly null name to set the "remaining new name" to. If null, it sets the remaining name field to null.- See Also:
-
getAltName
Retrieves thealtName
field of this exception. This is the name of the resolved object, relative to the contextaltNameCtx
. It will be used during a subsequent call to thejavax.naming.spi.ObjectFactory.getObjectInstance
method.- Returns:
- The name of the resolved object, relative to
altNameCtx
. It is a composite name. If null, then no name is specified. - See Also:
-
setAltName
Sets thealtName
field of this exception.- Parameters:
altName
- The name of the resolved object, relative toaltNameCtx
. It is a composite name. If null, then no name is specified.- See Also:
-
getAltNameCtx
Retrieves thealtNameCtx
field of this exception. This is the context relative to whichaltName
is named. It will be used during a subsequent call to thejavax.naming.spi.ObjectFactory.getObjectInstance
method.- Returns:
- The context relative to which
altName
is named. If null, then the default initial context is implied. - See Also:
-
setAltNameCtx
Sets thealtNameCtx
field of this exception.- Parameters:
altNameCtx
- The context relative to whichaltName
is named. If null, then the default initial context is implied.- See Also:
-