Class XpathException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.custommonkey.xmlunit.exceptions.XMLUnitException
-
- org.custommonkey.xmlunit.exceptions.XpathException
-
- All Implemented Interfaces:
java.io.Serializable
public class XpathException extends XMLUnitException
Exception anXpathEngine
is allowed to throw.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description XpathException(java.lang.String message)
Inititializes the exception.XpathException(java.lang.String message, java.lang.Throwable t)
Inititializes the exception.XpathException(java.lang.Throwable t)
Inititializes the exception.
-
Method Summary
-
Methods inherited from class org.custommonkey.xmlunit.exceptions.XMLUnitException
getCause
-
-
-
-
Constructor Detail
-
XpathException
public XpathException(java.lang.Throwable t)
Inititializes the exception.- Parameters:
t
- the root cause of the exception
-
XpathException
public XpathException(java.lang.String message)
Inititializes the exception.- Parameters:
message
- the detail message
-
XpathException
public XpathException(java.lang.String message, java.lang.Throwable t)
Inititializes the exception.- Parameters:
message
- the detail messaget
- the root cause of the exception
-
-