Package com.tccc.kos.commons.xml
Class XmlException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.tccc.kos.commons.xml.XmlException
- All Implemented Interfaces:
Serializable
Exception from the XML code.
- Since:
- 1.0
- Version:
- 2023-03-01
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionXmlException
(String message) Creates an exception with a detailed message.XmlException
(String message, Throwable cause) Creates an exception with a detailed message and root exception.XmlException
(Throwable cause) Creates an exception with a root exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XmlException
Creates an exception with a detailed message.- Parameters:
message
- the message
-
XmlException
Creates an exception with a detailed message and root exception.- Parameters:
message
- the messagecause
- the root cause
-
XmlException
Creates an exception with a root exception.- Parameters:
cause
- the root cause
-