1 5 6 package javax.xml.bind; 7 8 24 public class MarshalException extends JAXBException { 25 26 32 public MarshalException( String message ) { 33 this( message, null, null ); 34 } 35 36 43 public MarshalException( String message, String errorCode ) { 44 this( message, errorCode, null ); 45 } 46 47 53 public MarshalException( Throwable exception ) { 54 this( null, null, exception ); 55 } 56 57 64 public MarshalException( String message, Throwable exception ) { 65 this( message, null, exception ); 66 } 67 68 76 public MarshalException( String message, String errorCode, Throwable exception ) { 77 super( message, errorCode, exception ); 78 } 79 80 } 81 82 83 | Popular Tags |