KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > javax > xml > bind > DataBindingException


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 that
8  * this is an unchecked exception, while <tt>JAXBException</tt>
9  * is a checked exception.
10  *
11  * @see JAXB
12  * @since JAXB2.1
13  */

14 public class DataBindingException extends RuntimeException JavaDoc {
15     public DataBindingException(String JavaDoc message, Throwable JavaDoc cause) {
16         super(message, cause);
17     }
18
19     public DataBindingException(Throwable JavaDoc cause) {
20         super(cause);
21     }
22 }
23
Popular Tags