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