Class XmlGenerateException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aquima.interactions.foundation.exception.SysException
com.aquima.interactions.foundation.xml.exception.XmlException
com.aquima.interactions.foundation.xml.exception.XmlGenerateException
- All Implemented Interfaces:
Serializable
Exception used to indicate an error during the XML generation.
- Since:
- 5.0
- Author:
- I. de Jong
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionXmlGenerateException
(String message) Basic constructor with only a message explaining the cause of the error.XmlGenerateException
(String message, Throwable cause) Constructor with both a message and an exception explaining the cause of the error. -
Method Summary
Methods inherited from class com.aquima.interactions.foundation.exception.SysException
raise, raise
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XmlGenerateException
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
XmlGenerateException
Constructor with both a message and an exception explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.cause
- The original cause of the error.
-