|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.myfaces.shared_orchestra.util.ExceptionUtils
public final class ExceptionUtils
Various helpers to deal with exception
Method Summary | |
---|---|
static String |
getExceptionMessage(List throwables)
Find a throwable message starting with the last element. Returns the first throwable message where throwable.getMessage() != null |
static List |
getExceptions(Throwable cause)
returns a list of all throwables (including the one you passed in) wrapped by the given throwable. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static List getExceptions(Throwable cause)
returns a list of all throwables (including the one you passed in) wrapped by the given throwable.
In contrast to a simple call to getClause()
on each throwable it will also check if the throwable class
contain a method getRootCause()
(e.g. ServletException or JspException) and call it instead.
The first list element will your passed in exception, the last list element is the cause.
public static String getExceptionMessage(List throwables)
throwable.getMessage() != null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |