public class ThrowableTools
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.util.Map |
DEFAULT_KNOWN_EXCEPTION_WRAPPERS |
Modifier and Type | Method and Description |
---|---|
static void |
dumpJVMStack() |
static void |
dumpJVMStack(java.io.PrintStream ps) |
static void |
dumpStack()
Prints filtered stacktrace of calling thread to the given
PrintStream (if not null, the default) or otherwise to
System.err . |
static void |
dumpStack(java.lang.String msg) |
static void |
dumpStack(java.lang.String msg,
java.io.PrintStream ps) |
static void |
filterAndDumpStackTrace(java.lang.String str)
Reads a stacktrace given as
String and dumps it to STDOUT in
filtered form. |
static java.lang.Throwable |
filterStackTrace(java.lang.Throwable t)
Filters the stack trace of a
Throwable and its causes using default filters. |
static java.lang.Throwable[] |
getAllCauses(java.lang.Throwable t) |
static java.lang.Throwable |
getCause(java.lang.Throwable t)
Finds the cause of the exception if it exists.
|
static java.lang.String |
getCauseMethod(java.lang.Throwable t)
Returns the method name needed to get the 'cause' of the given t.
|
static java.lang.Throwable |
getCauseOfClass(java.lang.Class clazz,
java.lang.Throwable t) |
static java.lang.Throwable |
getDeepestCauseOfClass(java.lang.Class clazz,
java.lang.Throwable t) |
static java.lang.String |
getErrortext(java.lang.Exception ex)
Generates and returns a text consisting of the given message (if any) and a string dump of the exception
stacktrace slightly formatted to be used for storing as error info text with objects or similar.
|
static java.lang.String |
getErrortext(java.lang.Exception ex,
java.lang.String msg) |
static java.lang.Throwable |
getRootCause(java.lang.Throwable t)
Recursively retrieves the root cause of a Throwable.
|
static java.lang.String |
getStackTraceAsString(java.lang.Thread t) |
static java.lang.String |
getStackTraceAsString(java.lang.Thread t,
boolean filtered) |
static java.lang.String |
getStackTraceAsString(java.lang.Thread t,
OutputConfiguration outputConfig) |
static java.lang.String |
getStackTraceAsString(java.lang.Throwable t)
Returns stacktrace of the given
Throwable as String
filtering out certain stack frames if requested. |
static java.lang.String |
getStackTraceAsString(java.lang.Throwable t,
boolean filtered)
Returns stacktrace of the given
Throwable as String
filtering out certain stack frames with default filtering if requested. |
static java.lang.String |
getStackTraceAsString(java.lang.Throwable t,
OutputConfiguration outputConfig) |
static java.lang.StackTraceElement |
getStackTraceElement(java.lang.Throwable t,
java.lang.String declaringClass,
java.lang.String methodName)
Helper method to extract a certain element/part of a stacktrace
|
static java.lang.StackTraceElement |
getStackTraceElement(java.lang.Throwable t,
java.lang.String declaringClass,
java.lang.String methodName,
java.lang.String fileName) |
static java.lang.String |
getUserRelevantMessage(java.lang.Throwable t)
Extracts a user-relevant message from a throwable, optionally prioritizing a specific cause type.
|
static java.lang.String |
getUserRelevantMessage(java.lang.Throwable t,
java.lang.Class<? extends java.lang.Throwable> preferType) |
static boolean |
hasCauseOfClass(java.lang.Class clazz,
java.lang.Throwable t) |
static boolean |
isKnownWrapperException(java.lang.Throwable t) |
static void |
printStackTrace(java.lang.StackTraceElement[] stackTraceEls,
java.io.PrintWriter pw)
Prints the given stacktrace to to the given
PrintWriter filtering
out certain stack frames if requested. |
static void |
printStackTrace(java.lang.StackTraceElement[] stackTraceEls,
java.io.PrintWriter pw,
OutputConfiguration outputConfig) |
static void |
printStackTrace(java.lang.StackTraceElement[] stackTraceEls,
java.io.PrintWriter pw,
OutputConfiguration outputConfig,
int upToFrame) |
static void |
printStackTrace(java.lang.StackTraceElement[] stackTraceEls,
java.io.PrintWriter pw,
OutputConfiguration outputConfig,
int upToFrame,
int fromFrame) |
static void |
printStackTrace(java.lang.Throwable t,
boolean filtered)
Prints stacktrace of the given
Throwable to System.err . |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintStream ps)
Prints stacktrace of the given
Throwable to to the given
PrintStream filtering out certain stack frames if requested. |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintStream ps,
boolean filtered)
Prints stacktrace of the given
Throwable to the given
PrintStream , filtering out certain stack frames with default
filtering if requested. |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintStream ps,
OutputConfiguration outputConfig) |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintStream ps,
OutputConfiguration outputConfig,
int upToFrame) |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintStream ps,
OutputConfiguration outputConfig,
int upToFrame,
int fromFrame) |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintWriter pw)
Prints stacktrace of the given
Throwable to to the given
PrintWriter filtering out certain stack frames if requested. |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintWriter pw,
OutputConfiguration outputConfig) |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintWriter pw,
OutputConfiguration outputConfig,
int upToFrame) |
static void |
printStackTrace(java.lang.Throwable t,
java.io.PrintWriter pw,
OutputConfiguration outputConfig,
int upToFrame,
int fromFrame) |
static void |
printStackTraceAsCause(java.lang.String cm,
java.lang.Throwable t,
java.io.PrintWriter pw,
java.lang.StackTraceElement[] causedTrace,
OutputConfiguration outputConfig) |
public static final java.util.Map DEFAULT_KNOWN_EXCEPTION_WRAPPERS
public static java.lang.Throwable getCause(java.lang.Throwable t)
Throwable.getCause()
.
A nonnull result of getCause() is always preferred.t
- the nonnull throwable to get the cause.public static java.lang.Throwable[] getAllCauses(java.lang.Throwable t)
public static java.lang.String getCauseMethod(java.lang.Throwable t)
t
- a to get the 'cause' method ofpublic static java.lang.Throwable getRootCause(java.lang.Throwable t)
This method traverses the cause chain of the given Throwable and returns the ultimate cause, i.e., the Throwable that has no further cause.
t
- The Throwable for which to retrieve the root cause.public static java.lang.String getUserRelevantMessage(java.lang.Throwable t)
This method retrieves a message suitable for displaying to the user from the given throwable. It prioritizes a cause of the specified preferType if provided, falling back to the deepest unchecked exception or the root cause otherwise. Any irrelevant prefix marking the message as originating from the backend is removed from the message before returning it.
t
- The throwable from which to extract the message.preferType
- The preferred type of cause to extract the message from,
or null
to use the deepest unchecked exception or the root cause.null
if the throwable is null.public static java.lang.String getUserRelevantMessage(java.lang.Throwable t, java.lang.Class<? extends java.lang.Throwable> preferType)
public static boolean hasCauseOfClass(java.lang.Class clazz, java.lang.Throwable t)
public static java.lang.Throwable getCauseOfClass(java.lang.Class clazz, java.lang.Throwable t)
public static java.lang.Throwable getDeepestCauseOfClass(java.lang.Class clazz, java.lang.Throwable t)
public static boolean isKnownWrapperException(java.lang.Throwable t)
public static java.lang.String getStackTraceAsString(java.lang.Throwable t, boolean filtered)
Throwable
as String
filtering out certain stack frames with default filtering if requested.t
- the Throwable
whose stacktrace should be returnedfiltered
- if true filter out uninteresting stack frames; if false
include all stack framesString
public static java.lang.String getStackTraceAsString(java.lang.Throwable t)
Throwable
as String
filtering out certain stack frames if requested.t
- the Throwable
whose stacktrace should be returnedoutputConfig
- a OutputConfiguration
to configure text written to sString
public static java.lang.String getStackTraceAsString(java.lang.Throwable t, OutputConfiguration outputConfig)
public static java.lang.String getStackTraceAsString(java.lang.Thread t, boolean filtered)
public static java.lang.String getStackTraceAsString(java.lang.Thread t)
public static java.lang.String getStackTraceAsString(java.lang.Thread t, OutputConfiguration outputConfig)
public static void dumpStack()
PrintStream
(if not null, the default) or otherwise to
System.err
.public static void dumpStack(java.lang.String msg)
public static void dumpStack(java.lang.String msg, java.io.PrintStream ps)
public static void dumpJVMStack()
public static void dumpJVMStack(java.io.PrintStream ps)
public static void printStackTrace(java.lang.Throwable t, boolean filtered)
Throwable
to System.err
.t
- the Throwable
whose stacktrace should be printedfiltered
- if true filter out uninteresting stack frames; if false
print out all stack framespublic static void printStackTrace(java.lang.Throwable t, java.io.PrintStream ps, boolean filtered)
Throwable
to the given
PrintStream
, filtering out certain stack frames with default
filtering if requested.t
- the Throwable
whose stacktrace should be printeds
- the PrintStream
to print tofiltered
- if true filter out uninteresting stack frames; if false
print out all stack framespublic static void printStackTrace(java.lang.Throwable t, java.io.PrintStream ps)
Throwable
to to the given
PrintStream
filtering out certain stack frames if requested.t
- the Throwable
whose stacktrace should be printeds
- the PrintStream
to print tooutputConfig
- a OutputConfiguration
to configure text written to supToFrame
- if not -1 (the default) print only stack frames up to this index (used internal)fromFrame
- if not -1 (the default) print only stack frames starting from thix index (used internal)public static void printStackTrace(java.lang.Throwable t, java.io.PrintStream ps, OutputConfiguration outputConfig)
public static void printStackTrace(java.lang.Throwable t, java.io.PrintStream ps, OutputConfiguration outputConfig, int upToFrame)
public static void printStackTrace(java.lang.Throwable t, java.io.PrintStream ps, OutputConfiguration outputConfig, int upToFrame, int fromFrame)
public static void printStackTraceAsCause(java.lang.String cm, java.lang.Throwable t, java.io.PrintWriter pw, java.lang.StackTraceElement[] causedTrace, OutputConfiguration outputConfig)
public static void printStackTrace(java.lang.Throwable t, java.io.PrintWriter pw)
Throwable
to to the given
PrintWriter
filtering out certain stack frames if requested.t
- the Throwable
whose stacktrace should be printeds
- the PrintWriter
to print tooutputConfig
- a OutputConfiguration
to configure text written to supToFrame
- if not -1 (the default) print only stack frames up to this index (used internal)fromFrame
- if not -1 (the default) print only stack frames starting from thix index (used internal)public static void printStackTrace(java.lang.Throwable t, java.io.PrintWriter pw, OutputConfiguration outputConfig)
public static void printStackTrace(java.lang.Throwable t, java.io.PrintWriter pw, OutputConfiguration outputConfig, int upToFrame)
public static void printStackTrace(java.lang.Throwable t, java.io.PrintWriter pw, OutputConfiguration outputConfig, int upToFrame, int fromFrame)
public static void printStackTrace(java.lang.StackTraceElement[] stackTraceEls, java.io.PrintWriter pw)
PrintWriter
filtering
out certain stack frames if requested.stacktrace
- the stacktrace which should be printeds
- the PrintWriter
to print tooutputConfig
- a OutputConfiguration
to configure text written to supToFrame
- if not -1 (the default) print only stack frames up to this index (used internal)fromFrame
- if not -1 (the default) print only stack frames starting from thix index (used internal)public static void printStackTrace(java.lang.StackTraceElement[] stackTraceEls, java.io.PrintWriter pw, OutputConfiguration outputConfig)
public static void printStackTrace(java.lang.StackTraceElement[] stackTraceEls, java.io.PrintWriter pw, OutputConfiguration outputConfig, int upToFrame)
public static void printStackTrace(java.lang.StackTraceElement[] stackTraceEls, java.io.PrintWriter pw, OutputConfiguration outputConfig, int upToFrame, int fromFrame)
public static java.lang.Throwable filterStackTrace(java.lang.Throwable t)
Throwable
and its causes using default filters.
This method removes stack frames that are typically irrelevant for debugging or logging purposes, such as frames from internal library classes. It processes the given Throwable and all its causes, applying the default filters to each stack trace.
t
- The Throwable
whose stack trace should be filtered. May be null.Throwable
, or null if the input is null. This allows for convenient usage,
such as log.error("Some problem", ThrowableTools.filterStackTrace(re))
.de.ipcon.tools.StackTraceFilter.STANDARD_FILTERS
public static java.lang.StackTraceElement getStackTraceElement(java.lang.Throwable t, java.lang.String declaringClass, java.lang.String methodName)
t
- declaringClass
- methodName
- fileName
- optional; e.g. leave filename empty when searching for specific class/method in stack tracepublic static java.lang.StackTraceElement getStackTraceElement(java.lang.Throwable t, java.lang.String declaringClass, java.lang.String methodName, java.lang.String fileName)
public static void filterAndDumpStackTrace(java.lang.String str)
String
and dumps it to STDOUT in
filtered form. Mainly for debugging purposes.str
- the stacktrace as a String
public static java.lang.String getErrortext(java.lang.Exception ex)
getStackTraceAsString()
.public static java.lang.String getErrortext(java.lang.Exception ex, java.lang.String msg)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.