Class EarlyReturnException

  • All Implemented Interfaces:
    java.io.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:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.Object returnValue  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object getReturnValue()  
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • returnValue

        private java.lang.Object returnValue
    • Constructor Detail

      • EarlyReturnException

        public EarlyReturnException​(java.lang.String message)
      • EarlyReturnException

        public EarlyReturnException​(java.lang.String message,
                                    java.lang.Throwable th)
      • EarlyReturnException

        public EarlyReturnException​(java.lang.String message,
                                    java.lang.Object returnValue)
      • EarlyReturnException

        public EarlyReturnException​(java.lang.String message,
                                    java.lang.Throwable th,
                                    java.lang.Object returnValue)
    • Method Detail

      • getReturnValue

        public java.lang.Object getReturnValue()