Class UncheckedExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.lang3.exception.UncheckedException
org.apache.commons.lang3.concurrent.UncheckedExecutionException
- All Implemented Interfaces:
Serializable
Unchecked
ExecutionException
.- Since:
- 3.13.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an instance initialized to the givencause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UncheckedExecutionException
Constructs an instance initialized to the givencause
.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-