Serializable
public class CannotProceedException extends NamingException
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.
Modifier and Type | Field | Description |
---|---|---|
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(). |
remainingName, resolvedName, resolvedObj, rootException
Constructor | Description |
---|---|
CannotProceedException() |
Constructs a new instance of CannotProceedException. |
CannotProceedException |
Constructs a new instance of CannotProceedException using an explanation. |
Modifier and Type | Method | Description |
---|---|---|
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 |
setAltName |
Sets the altName field of this exception. |
void |
setAltNameCtx |
Sets the altNameCtx field of this exception. |
void |
setEnvironment |
Sets the environment that will be returned when getEnvironment() is called. |
void |
setRemainingNewName |
Sets the "remaining new name" field of this exception. |
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString, toString
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
protected Name remainingNewName
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
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
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
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().
public CannotProceedException(String explanation)
explanation
- A possibly null string containing additional detail about this exception. If null, this exception has no detail message.public CannotProceedException()
public Hashtable<?,?> getEnvironment()
public void setEnvironment(Hashtable<?,?> environment)
environment
- A possibly null environment property set. null means no environment is being recorded for this exception.public Name getRemainingNewName()
public void setRemainingNewName(Name newName)
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 newName
is made and stored. Subsequent changes to name
does not affect the copy in this NamingException and vice versa.
newName
- The possibly null name to set the "remaining new name" to. If null, it sets the remaining name field to null.public Name getAltName()
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
. It is a composite name. If null, then no name is specified.public void setAltName(Name altName)
altName
field of this exception.altName
- The name of the resolved object, relative to altNameCtx
. It is a composite name. If null, then no name is specified.public Context getAltNameCtx()
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
is named. If null, then the default initial context is implied.public void setAltNameCtx(Context altNameCtx)
altNameCtx
field of this exception.altNameCtx
- The context relative to which altName
is named. If null, then the default initial context is implied.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.naming/javax/naming/CannotProceedException.html