Module net.luis.utils
Class NoSuchXmlAttributeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.util.NoSuchElementException
net.luis.utils.io.data.xml.exception.NoSuchXmlAttributeException
- All Implemented Interfaces:
Serializable
Thrown to indicate that a xml attribute does not exist.
The exception message will contain the details of the missing element.
The exception message will contain the details of the missing element.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new no such xml attribute exception with no details.NoSuchXmlAttributeException
(@Nullable String message) Constructs a new no such xml attribute exception with the specified message.NoSuchXmlAttributeException
(@Nullable String message, @Nullable Throwable cause) Constructs a new no such xml attribute exception with the specified message and cause.NoSuchXmlAttributeException
(@Nullable Throwable cause) Constructs a new no such xml attribute exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchXmlAttributeException
public NoSuchXmlAttributeException()Constructs a new no such xml attribute exception with no details. -
NoSuchXmlAttributeException
Constructs a new no such xml attribute exception with the specified message.- Parameters:
message
- The message of the exception
-
NoSuchXmlAttributeException
public NoSuchXmlAttributeException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause) Constructs a new no such xml attribute exception with the specified message and cause.- Parameters:
message
- The message of the exceptioncause
- The cause of the exception
-
NoSuchXmlAttributeException
Constructs a new no such xml attribute exception with the specified cause.- Parameters:
cause
- The cause of the exception
-