1 package javax.xml.bind;2 3 /**4 * Exception that represents a failure in a JAXB operation.5 *6 * <p>7 * This exception differs from {@link JAXBException} in that8 * this is an unchecked exception, while <tt>JAXBException</tt>9 * is a checked exception.10 *11 * @see JAXB12 * @since JAXB2.113 */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 }23