1 5 6 package javax.xml.bind; 7 8 26 public class UnmarshalException extends JAXBException { 27 28 34 public UnmarshalException( String message ) { 35 this( message, null, null ); 36 } 37 38 45 public UnmarshalException( String message, String errorCode ) { 46 this( message, errorCode, null ); 47 } 48 49 55 public UnmarshalException( Throwable exception ) { 56 this( null, null, exception ); 57 } 58 59 66 public UnmarshalException( String message, Throwable exception ) { 67 this( message, null, exception ); 68 } 69 70 78 public UnmarshalException( String message, String errorCode, Throwable exception ) { 79 super( message, errorCode, exception ); 80 } 81 82 } 83 84 85 | Popular Tags |