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:
java.io.Serializable
public class FunctorException extends java.lang.RuntimeExceptionRuntime exception thrown from functors. If required, a root cause error can be wrapped within this one.- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FunctorException()Constructs a newFunctorExceptionwithout specified detail message.FunctorException(java.lang.String msg)Constructs a newFunctorExceptionwith specified detail message.FunctorException(java.lang.String msg, java.lang.Throwable rootCause)Constructs a newFunctorExceptionwith specified detail message and nestedThrowableroot cause.FunctorException(java.lang.Throwable rootCause)Constructs a newFunctorExceptionwith specified nestedThrowableroot cause.
-
-
-
Constructor Detail
-
FunctorException
public FunctorException()
Constructs a newFunctorExceptionwithout specified detail message.
-
FunctorException
public FunctorException(java.lang.String msg)
Constructs a newFunctorExceptionwith specified detail message.- Parameters:
msg- the error message.
-
FunctorException
public FunctorException(java.lang.Throwable rootCause)
Constructs a newFunctorExceptionwith specified nestedThrowableroot cause.- Parameters:
rootCause- the exception or error that caused this exception to be thrown.
-
FunctorException
public FunctorException(java.lang.String msg, java.lang.Throwable rootCause)Constructs 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.
-
-