Package org.kiwiproject.xml
Class XmlRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.kiwiproject.xml.XmlRuntimeException
-
- All Implemented Interfaces:
Serializable
public class XmlRuntimeException extends RuntimeException
Runtime wrapper exception for XML processing errors.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XmlRuntimeException(String message)Create instance with given message.XmlRuntimeException(String message, Throwable cause)Create instance with given message and cause.XmlRuntimeException(Throwable cause)Create instance with given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
XmlRuntimeException
public XmlRuntimeException(String message)
Create instance with given message.- Parameters:
message- the message
-
XmlRuntimeException
public XmlRuntimeException(String message, Throwable cause)
Create instance with given message and cause.- Parameters:
message- the messagecause- the cause
-
XmlRuntimeException
public XmlRuntimeException(Throwable cause)
Create instance with given cause.- Parameters:
cause- the cause
-
-