Package de.uplanet.util
Class ExceptionUtil
- java.lang.Object
-
- de.uplanet.util.ExceptionUtil
-
@Scriptable public final class ExceptionUtil extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T extends Throwable>
TgetCauseOfType(Throwable p_e, Class<T> p_clsException)Get the first cause of the given type.static ThrowablegetCauseOfType(Throwable p_e, String p_strExceptionClass)Get the first cause of the given type.static ThrowablegetRootCause(Throwable p_e)Get the root cause of an exception.static StringgetStackTrace(Throwable p_e)Get the stack trace of the given exception as a string.static booleanisCausedBy(Throwable p_e, Class<? extends Throwable> p_clsException)Check if the given exception is caused by an exception of the given type.static booleanisCausedBy(Throwable p_e, String p_strExceptionClass)Check if the given exception is caused by an exception of the given type.static booleanisCausedByAccessControlException(Throwable p_e)Check if the given exception is caused by ajava.security.AccessControlException.static <T extends Throwable>
TprefixMessage(T p_e, String p_strPrefix)Try to prefix the given exception's message with the given prefix.
-
-
-
Method Detail
-
isCausedBy
public static boolean isCausedBy(Throwable p_e, String p_strExceptionClass) throws ClassNotFoundException
Check if the given exception is caused by an exception of the given type.- Parameters:
p_e- The exception.p_strExceptionClass- The type of the exception.- Returns:
trueif the given exception is caused by an exception of the given type, orfalseotherwise.- Throws:
ClassNotFoundException- - Ifp_strExceptionClassis not found.- See Also:
getCauseOfType(Throwable, String)
-
isCausedBy
public static boolean isCausedBy(Throwable p_e, Class<? extends Throwable> p_clsException)
Check if the given exception is caused by an exception of the given type.- Parameters:
p_e- The exception.p_clsException- The type of the exception.- Returns:
trueif the given exception is caused by an exception of the given type, orfalseotherwise.- See Also:
getCauseOfType(Throwable, Class)
-
getCauseOfType
public static Throwable getCauseOfType(Throwable p_e, String p_strExceptionClass) throws ClassNotFoundException
Get the first cause of the given type.- Parameters:
p_e- The exception.p_strExceptionClass- The type of the exception.- Returns:
- The first cause of the exception of the given type, or
nullif no such cause could be found. - Throws:
ClassNotFoundException- - Ifp_strExceptionClassis not found.
-
getCauseOfType
public static <T extends Throwable> T getCauseOfType(Throwable p_e, Class<T> p_clsException)
Get the first cause of the given type.- Parameters:
p_e- The exception.p_clsException- The type of the exception.- Returns:
- The first cause of the exception of the given type, or
nullif no such cause could be found.
-
isCausedByAccessControlException
public static boolean isCausedByAccessControlException(Throwable p_e)
Check if the given exception is caused by ajava.security.AccessControlException.- Returns:
trueif the give exception is caused by ajava.security.AccessControlException, orfalseotherwise.
-
getRootCause
public static Throwable getRootCause(Throwable p_e)
Get the root cause of an exception.- Parameters:
p_e- The exception.- Returns:
- The root cause, or
p_eif no cause exists.
-
prefixMessage
public static <T extends Throwable> T prefixMessage(T p_e, String p_strPrefix)
Try to prefix the given exception's message with the given prefix.Under normal circumstances exceptions should be wrapped as the cause of newly thrown exceptions. So use this method sparingly.
- Parameters:
p_e- The exception.p_strPrefix- The prefix.- Returns:
p_ewith a prefixed message.
-
-