From ad5a8c30af02fb7e2a25a6a647d571a5107ef116 Mon Sep 17 00:00:00 2001 From: mrglavas Date: Fri, 3 Jun 2005 18:54:52 +0000 Subject: [PATCH] Fixing indentation. git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226210 13f79535-47bb-0310-9956-ffa450edef68 --- .../DatatypeConfigurationException.java | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) 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.

*/ - + public DatatypeConfigurationException() { super(); } - + /** *

Create a new DatatypeConfigurationException with - * the specified detail message.

+ * the specified detail message.

* - * @param message The detail message. + * @param message The detail message. */ public DatatypeConfigurationException(String message) { super(message); } - - /** - *

Create a new DatatypeConfigurationException with - * the specified detail message and cause.

- * - * @param message The detail message. - * @param cause The cause. A 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.

+ * + * @param message The detail message. + * @param cause The cause. A 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.

- * - * @param cause The cause. A 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.

+ * + * @param cause The cause. A 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