Class ActionNotFoundException

All Implemented Interfaces:
Serializable

public class ActionNotFoundException extends AppianException
This exception is thrown when attempting to access an Action that is not found within an Application.
See Also:
  • Field Details

    • errorCodeArguments

      protected Object[] errorCodeArguments
  • Constructor Details

    • ActionNotFoundException

      public ActionNotFoundException()
      Creates a new exception with a default ErrorCode.INVALID_ACTION code.
  • Method Details

    • getErrorCodeArguments

      public Object[] getErrorCodeArguments()
      Description copied from class: AppianException
      Gets the arguments that must be used to render this exception's message representation. Subclasses should override this method to return specific arguments. The default implementation returns a length 1 array containing the message as returned by the parent class of AppianException. This method is only called when AppianException.getErrorCodeArguments(Locale) hasn't been overwritten.
      Overrides:
      getErrorCodeArguments in class AppianException
      Returns:
      the arguments of the error code tied to this exception
      See Also: