diff --git a/java/external/src/javax/xml/datatype/DatatypeConfigurationException.java b/java/external/src/javax/xml/datatype/DatatypeConfigurationException.java index e02dea3..db4cda9 100644 --- a/java/external/src/javax/xml/datatype/DatatypeConfigurationException.java +++ b/java/external/src/javax/xml/datatype/DatatypeConfigurationException.java @@ -49,46 +49,46 @@ public class DatatypeConfigurationException extends Exception { *
Create a new DatatypeConfigurationException with
* no specified detail mesage and cause.
Create a new DatatypeConfigurationException with
- * the specified detail message.
Create a new DatatypeConfigurationException with
- * the specified detail message and cause.
null value is permitted, and indicates that the cause is nonexistent or unknown.
- */
- public DatatypeConfigurationException(String message, Throwable cause) {
+ /**
+ * Create a new DatatypeConfigurationException with
+ * the specified detail message and cause.
null value is permitted, and indicates that the cause is nonexistent or unknown.
+ */
+
+ public DatatypeConfigurationException(String message, Throwable cause) {
super(message);
initCauseByReflection(cause);
- }
-
- /**
- * Create a new DatatypeConfigurationException with
- * the specified cause.
null value is permitted, and indicates that the cause is nonexistent or unknown.
- */
+ }
- public DatatypeConfigurationException(Throwable cause) {
+ /**
+ * Create a new DatatypeConfigurationException with
+ * the specified cause.
null value is permitted, and indicates that the cause is nonexistent or unknown.
+ */
+
+ public DatatypeConfigurationException(Throwable cause) {
super(cause == null ? null : cause.toString());
initCauseByReflection(cause);
- }
+ }
/**
* Print the the trace of methods from where the error