Class EarlyReturnException

All Implemented Interfaces:
Serializable

public class EarlyReturnException extends ExecuteException
Specialization of ExecuteException which is used to cause a trigger method to return early the trigger point, possibly supplying an object to be returned. This is used to implement the RETURN action
See Also:
  • Field Details

    • returnValue

      private Object returnValue
  • Constructor Details

    • EarlyReturnException

      public EarlyReturnException(String message)
    • EarlyReturnException

      public EarlyReturnException(String message, Throwable th)
    • EarlyReturnException

      public EarlyReturnException(String message, Object returnValue)
    • EarlyReturnException

      public EarlyReturnException(String message, Throwable th, Object returnValue)
  • Method Details

    • getReturnValue

      public Object getReturnValue()