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.RuntimeException
Runtime 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 newFunctorException
without specified detail message.FunctorException(java.lang.String msg)
Constructs a newFunctorException
with specified detail message.FunctorException(java.lang.String msg, java.lang.Throwable rootCause)
Constructs a newFunctorException
with specified detail message and nestedThrowable
root cause.FunctorException(java.lang.Throwable rootCause)
Constructs a newFunctorException
with specified nestedThrowable
root cause.
-
-
-
Constructor Detail
-
FunctorException
public FunctorException()
Constructs a newFunctorException
without specified detail message.
-
FunctorException
public FunctorException(java.lang.String msg)
Constructs a newFunctorException
with specified detail message.- Parameters:
msg
- the error message.
-
FunctorException
public FunctorException(java.lang.Throwable rootCause)
Constructs a newFunctorException
with specified nestedThrowable
root 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 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.
-
-