Package org.springframework.oxm
Class XmlMappingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.oxm.XmlMappingException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MarshallingException
,UncategorizedMappingException
,ValidationFailureException
Root of the hierarchy of Object XML Mapping exceptions.
- Since:
- 3.0
- Author:
- Arjen Poutsma
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct anXmlMappingException
with the specified detail message.XmlMappingException
(String msg, Throwable cause) Construct anXmlMappingException
with the specified detail message and nested exception. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
XmlMappingException
Construct anXmlMappingException
with the specified detail message.- Parameters:
msg
- the detail message
-
XmlMappingException
Construct anXmlMappingException
with the specified detail message and nested exception.- Parameters:
msg
- the detail messagecause
- the nested exception
-