public final class ExceptionUtil extends Object
Modifier and Type | Class and Description |
---|---|
static interface |
ExceptionUtil.RuntimeExceptionFactory
Interface used by rethrow/peel to wrap the peeled exception
|
Modifier and Type | Method and Description |
---|---|
static void |
fixAsyncStackTrace(Throwable asyncCause,
StackTraceElement[] localSideStackTrace)
This method changes the given async cause, and it adds the also given local stacktrace.
If the remoteCause is an ExecutionException and it has a non-null inner
cause, this inner cause is unwrapped and the local stacktrace and exception message are added to the
that instead of the given asyncCause itself. |
static void |
fixAsyncStackTrace(Throwable asyncCause,
StackTraceElement[] localSideStackTrace,
String localExceptionMessage)
This method changes the given async cause, and it adds the also given local stacktrace separated by the
supplied exception message.
If the remoteCause is an ExecutionException and it has a non-null inner
cause, this inner cause is unwrapped and the local stacktrace and exception message are added to the
that instead of the given remoteCause itself. |
static RuntimeException |
peel(Throwable t) |
static <T extends Throwable> |
peel(Throwable t,
Class<T> allowedType,
String message)
Processes
Throwable t so that the returned Throwable 's type matches allowedType or
RuntimeException . |
static <T extends Throwable> |
peel(Throwable t,
Class<T> allowedType,
String message,
ExceptionUtil.RuntimeExceptionFactory runtimeExceptionFactory)
Processes
Throwable t so that the returned Throwable 's type matches allowedType or
RuntimeException . |
static RuntimeException |
rethrow(Throwable t) |
static <T extends Throwable> |
rethrow(Throwable t,
Class<T> allowedType) |
static RuntimeException |
rethrow(Throwable t,
ExceptionUtil.RuntimeExceptionFactory runtimeExceptionFactory) |
static <T extends Throwable> |
rethrowAllowedTypeFirst(Throwable t,
Class<T> allowedType)
This rethrow the exception providing an allowed Exception in first priority, even it is a Runtime exception
|
static RuntimeException |
rethrowAllowInterrupted(Throwable t) |
static <T> T |
sneakyThrow(Throwable t) |
static String |
toString(Throwable cause)
Converts a Throwable stacktrace to a String.
|
public static String toString(Throwable cause)
cause
- the Throwablepublic static RuntimeException peel(Throwable t)
public static <T extends Throwable> Throwable peel(Throwable t, Class<T> allowedType, String message)
Throwable t
so that the returned Throwable
's type matches allowedType
or
RuntimeException
. Processing may include unwrapping t
's cause hierarchy, wrapping it in a
HazelcastException
or just returning the same instance t
if it is already an instance of
RuntimeException
.T
- expected type of Throwable
t
- Throwable
to be peeledallowedType
- the type expected to be returned; when null
, this method returns instances
of RuntimeException
message
- if not null
, used as the message in the HazelcastException
that
may wrap the peeled Throwable
Throwable
public static <T extends Throwable> Throwable peel(Throwable t, Class<T> allowedType, String message, ExceptionUtil.RuntimeExceptionFactory runtimeExceptionFactory)
Throwable t
so that the returned Throwable
's type matches allowedType
or
RuntimeException
. Processing may include unwrapping t
's cause hierarchy, wrapping it in a
RuntimeException
created by using runtimeExceptionFactory or just returning the same instance t
if it is already an instance of RuntimeException
.T
- expected type of Throwable
t
- Throwable
to be peeledallowedType
- the type expected to be returned; when null
, this method returns instances
of RuntimeException
message
- if not null
, used as the message in RuntimeException
that
may wrap the peeled Throwable
runtimeExceptionFactory
- wraps the peeled code using this runtimeExceptionFactoryThrowable
public static RuntimeException rethrow(Throwable t)
public static RuntimeException rethrow(Throwable t, ExceptionUtil.RuntimeExceptionFactory runtimeExceptionFactory)
public static <T extends Throwable> RuntimeException rethrow(Throwable t, Class<T> allowedType) throws T extends Throwable
T extends Throwable
public static <T extends Throwable> RuntimeException rethrowAllowedTypeFirst(Throwable t, Class<T> allowedType) throws T extends Throwable
T extends Throwable
public static RuntimeException rethrowAllowInterrupted(Throwable t) throws InterruptedException
InterruptedException
public static <T> T sneakyThrow(Throwable t)
public static void fixAsyncStackTrace(Throwable asyncCause, StackTraceElement[] localSideStackTrace)
ExecutionException
and it has a non-null inner
cause, this inner cause is unwrapped and the local stacktrace and exception message are added to the
that instead of the given asyncCause itself.asyncCause
- the async exceptionlocalSideStackTrace
- the local stacktrace to add to the exception stacktracepublic static void fixAsyncStackTrace(Throwable asyncCause, StackTraceElement[] localSideStackTrace, String localExceptionMessage)
ExecutionException
and it has a non-null inner
cause, this inner cause is unwrapped and the local stacktrace and exception message are added to the
that instead of the given remoteCause itself.asyncCause
- the async exceptionlocalSideStackTrace
- the local stacktrace to add to the exceptions stacktracelocalExceptionMessage
- a special exception message which is added to the stacktraceCopyright © 2018 Hazelcast, Inc.. All rights reserved.