Class XmlException
- 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
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
XmlGenerateException
,XmlParseException
,XmlValidationException
public class XmlException extends SysException
Common base class for XML exceptions.- Since:
- 5.0
- Author:
- I. de Jong
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XmlException(String message)
Basic constructor with only a message explaining the cause of the error.XmlException(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
-
XmlException
public XmlException(String message)
Basic constructor with only a message explaining the cause of the error.- Parameters:
message
- The message explaining the error that occurred.
-
-