Class FunctorException

All Implemented Interfaces:
Serializable

public class FunctorException extends RuntimeException
Runtime exception thrown from functors. If required, a root cause error can be wrapped within this one.
Since:
3.0
See Also:
  • Constructor Details

    • FunctorException

      Constructs a new FunctorException without specified detail message.
    • FunctorException

      public FunctorException(String msg)
      Constructs a new FunctorException with specified detail message.
      Parameters:
      msg - the error message.
    • FunctorException

      public FunctorException(String msg, Throwable rootCause)
      Constructs a new FunctorException with specified detail message and nested Throwable root cause.
      Parameters:
      msg - the error message.
      rootCause - the exception or error that caused this exception to be thrown.
    • FunctorException

      public FunctorException(Throwable rootCause)
      Constructs a new FunctorException with specified nested Throwable root cause.
      Parameters:
      rootCause - the exception or error that caused this exception to be thrown.