Sort members.

This commit is contained in:
Gary Gregory 2019-09-03 14:08:00 -04:00
parent 4632ad7c7c
commit 8757d91bc3
1 changed files with 8 additions and 8 deletions

View File

@ -39,14 +39,6 @@
*/
public class ExceptionUtils {
/**
* <p>Used when printing stack frames to denote the start of a
* wrapped exception.</p>
*
* <p>Package private for accessibility by test suite.</p>
*/
static final String WRAPPED_MARKER = " [wrapped] ";
/**
* <p>The names of methods commonly used to access a wrapped exception.</p>
*/
@ -66,6 +58,14 @@ public class ExceptionUtils {
"getThrowable",
};
/**
* <p>Used when printing stack frames to denote the start of a
* wrapped exception.</p>
*
* <p>Package private for accessibility by test suite.</p>
*/
static final String WRAPPED_MARKER = " [wrapped] ";
//-----------------------------------------------------------------------
/**
* <p>Introspects the <code>Throwable</code> to obtain the cause.</p>