Class AttributeModificationException
- All Implemented Interfaces:
Serializable
public class AttributeModificationException extends NamingException
An AttributeModificationException instance is not synchronized against concurrent multithreaded access. Multiple threads trying to access and modify a single AttributeModification instance should lock the object.
Field Summary
Fields declared in class javax.naming.NamingException
remainingName, resolvedName, resolvedObj, rootException
Constructor Summary
Constructor | Description |
---|---|
AttributeModificationException() |
Constructs a new instance of AttributeModificationException. |
AttributeModificationException |
Constructs a new instance of AttributeModificationException using an explanation. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
ModificationItem[] |
getUnexecutedModifications() |
Retrieves the unexecuted modification list. |
void |
setUnexecutedModifications |
Sets the unexecuted modification list to be e. |
String |
toString() |
The string representation of this exception consists of information about where the error occurred, and the first unexecuted modification. |
Methods declared in class javax.naming.NamingException
appendRemainingComponent, appendRemainingName, getCause, getExplanation, getRemainingName, getResolvedName, getResolvedObj, getRootCause, initCause, setRemainingName, setResolvedName, setResolvedObj, setRootCause, toString
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace
Constructor Details
AttributeModificationException
public AttributeModificationException(String explanation)
- Parameters:
-
explanation
- Possibly null additional detail about this exception. If null, this exception has no detail message. - See Also:
AttributeModificationException
public AttributeModificationException()
Method Details
setUnexecutedModifications
public void setUnexecutedModifications(ModificationItem[] e)
- Parameters:
-
e
- The possibly null list of unexecuted modifications. - See Also:
getUnexecutedModifications
public ModificationItem[] getUnexecutedModifications()
- Returns:
- The possibly null unexecuted modification list.
- See Also:
toString
public String toString()
- Overrides:
-
toString
in classNamingException
- Returns:
- The non-null string representation of this exception.
© 1993, 2021, 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/17/docs/api/java.naming/javax/naming/directory/AttributeModificationException.html