Package nu.xom
Class NoSuchAttributeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
nu.xom.XMLException
nu.xom.NoSuchAttributeException
- All Implemented Interfaces:
Serializable
Indicates that an attribute with a certain name and/or namespace does not exist. This is normally thrown after an attempt to remove such a non-existent attribute.
- Version:
- 1.0
- Author:
- Elliotte Rusty Harold
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoSuchAttributeException
(String message) Creates a newNoSuchAttributeException
with a detail message.NoSuchAttributeException
(String message, Throwable cause) Creates a newNoSuchAttributeException
with the specified detail message and an underlying root cause. -
Method Summary
Methods inherited from class nu.xom.XMLException
getCause, initCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchAttributeException
Creates a new
NoSuchAttributeException
with a detail message.- Parameters:
message
- explains the reason for the exception
-
NoSuchAttributeException
Creates a new
NoSuchAttributeException
with the specified detail message and an underlying root cause.- Parameters:
message
- explains the reason for the exceptioncause
- the nested exception that caused this exception
-