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 SummaryConstructorsConstructorDescriptionConstructs a newFunctorExceptionwithout specified detail message.FunctorException(String msg) Constructs a newFunctorExceptionwith specified detail message.FunctorException(String msg, Throwable rootCause) Constructs a newFunctorExceptionwith specified detail message and nestedThrowableroot cause.FunctorException(Throwable rootCause) Constructs a newFunctorExceptionwith specified nestedThrowableroot cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
FunctorExceptionpublic FunctorException()Constructs a newFunctorExceptionwithout specified detail message.
- 
FunctorExceptionConstructs a newFunctorExceptionwith specified detail message.- Parameters:
- msg- the error message.
 
- 
FunctorExceptionConstructs a newFunctorExceptionwith specified detail message and nestedThrowableroot cause.- Parameters:
- msg- the error message.
- rootCause- the exception or error that caused this exception to be thrown.
 
- 
FunctorExceptionConstructs a newFunctorExceptionwith specified nestedThrowableroot cause.- Parameters:
- rootCause- the exception or error that caused this exception to be thrown.
 
 
-