diff --git a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java index e9761cde0..be5a7a27a 100644 --- a/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java +++ b/src/main/java/org/apache/commons/lang3/exception/ExceptionUtils.java @@ -39,14 +39,6 @@ import org.apache.commons.lang3.Validate; */ public class ExceptionUtils { - /** - *
Used when printing stack frames to denote the start of a - * wrapped exception.
- * - *Package private for accessibility by test suite.
- */ - static final String WRAPPED_MARKER = " [wrapped] "; - /** *The names of methods commonly used to access a wrapped exception.
*/ @@ -66,6 +58,14 @@ public class ExceptionUtils { "getThrowable", }; + /** + *Used when printing stack frames to denote the start of a + * wrapped exception.
+ * + *Package private for accessibility by test suite.
+ */ + static final String WRAPPED_MARKER = " [wrapped] "; + //----------------------------------------------------------------------- /** *Introspects the Throwable
to obtain the cause.