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
public class UncheckedExecutionException extends UncheckedException
UncheckedExecutionException.- Since:
- 3.13.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UncheckedExecutionException(Throwable cause)Constructs 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 Detail
-
UncheckedExecutionException
public UncheckedExecutionException(Throwable cause)
Constructs an instance initialized to the givencause.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (A @{code null} value is permitted, and indicates that the cause is nonexistent or unknown.)
-
-