Fixing indentation.
git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226210 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -49,46 +49,46 @@ public class DatatypeConfigurationException extends Exception {
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* no specified detail mesage and cause.</p>
|
||||
*/
|
||||
|
||||
|
||||
public DatatypeConfigurationException() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* the specified detail message.</p>
|
||||
* the specified detail message.</p>
|
||||
*
|
||||
* @param message The detail message.
|
||||
* @param message The detail message.
|
||||
*/
|
||||
|
||||
public DatatypeConfigurationException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* the specified detail message and cause.</p>
|
||||
*
|
||||
* @param message The detail message.
|
||||
* @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
|
||||
*/
|
||||
|
||||
public DatatypeConfigurationException(String message, Throwable cause) {
|
||||
/**
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* the specified detail message and cause.</p>
|
||||
*
|
||||
* @param message The detail message.
|
||||
* @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
|
||||
*/
|
||||
|
||||
public DatatypeConfigurationException(String message, Throwable cause) {
|
||||
super(message);
|
||||
initCauseByReflection(cause);
|
||||
}
|
||||
|
||||
/**
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* the specified cause.</p>
|
||||
*
|
||||
* @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
|
||||
*/
|
||||
}
|
||||
|
||||
public DatatypeConfigurationException(Throwable cause) {
|
||||
/**
|
||||
* <p>Create a new <code>DatatypeConfigurationException</code> with
|
||||
* the specified cause.</p>
|
||||
*
|
||||
* @param cause The cause. A <code>null</code> 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
|
||||
|
||||
Reference in New Issue
Block a user