Package org.apache.commons.collections4
Class FunctorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.commons.collections4.FunctorException
- All Implemented Interfaces:
Serializable
Runtime exception thrown from functors.
If required, a root cause error can be wrapped within this one.
- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a newFunctorException
without specified detail message.FunctorException
(String msg) Constructs a newFunctorException
with specified detail message.FunctorException
(String msg, Throwable rootCause) Constructs a newFunctorException
with specified detail message and nestedThrowable
root cause.FunctorException
(Throwable rootCause) Constructs a newFunctorException
with specified nestedThrowable
root cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FunctorException
public FunctorException()Constructs a newFunctorException
without specified detail message. -
FunctorException
Constructs a newFunctorException
with specified detail message.- Parameters:
msg
- the error message.
-
FunctorException
Constructs a newFunctorException
with specified detail message and nestedThrowable
root cause.- Parameters:
msg
- the error message.rootCause
- the exception or error that caused this exception to be thrown.
-
FunctorException
Constructs a newFunctorException
with specified nestedThrowable
root cause.- Parameters:
rootCause
- the exception or error that caused this exception to be thrown.
-