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
public class XmlGenerateException extends XmlException
Exception used to indicate an error during the XML generation.- Since:
- 5.0
- Author:
- I. de Jong
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XmlGenerateException(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 Detail
-
XmlGenerateException
public XmlGenerateException(String message)
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
-