Class MissingMethodExecutionFailed

All Implemented Interfaces:
Serializable

public class MissingMethodExecutionFailed extends MissingMethodExceptionNoStack
A stack-less exception used to indicate that the execution of a missingMethod method failed with a MissingMethodException. This is used to prevent a call to invokeMethod for GroovyObject implementing classes.
See Also:
  • Constructor Details

    • MissingMethodExecutionFailed

      public MissingMethodExecutionFailed(String method, Class type, Object[] arguments, boolean isStatic, Throwable cause)
      Constructs a new MissingMethodExecutionFailed.
      Parameters:
      method - the name of the method that failed
      type - the class where the method was called
      arguments - the arguments passed to the method
      isStatic - true if the missing method was static
      cause - the underlying exception that caused the execution to fail
  • Method Details