01: package javax.xml.bind;
02:
03: /**
04: * Exception that represents a failure in a JAXB operation.
05: *
06: * <p>
07: * This exception differs from {@link JAXBException} in that
08: * this is an unchecked exception, while <tt>JAXBException</tt>
09: * is a checked exception.
10: *
11: * @see JAXB
12: * @since JAXB2.1
13: */
14: public class DataBindingException extends RuntimeException {
15: public DataBindingException(String message, Throwable cause) {
16: super (message, cause);
17: }
18:
19: public DataBindingException(Throwable cause) {
20: super(cause);
21: }
22: }
|