GoogleApi.Script.V1.Model.ExecutionError (google_api_script v0.19.0)

View Source

An object that provides information about the nature of an error resulting from an attempted execution of a script function using the Apps Script API. If a run call succeeds but the script function (or Apps Script itself) throws an exception, the response body's error field contains a Status object. The Status object's details field contains an array with a single one of these ExecutionError objects.

Attributes

  • errorMessage (type: String.t, default: nil) - The error message thrown by Apps Script, usually localized into the user's language.
  • errorType (type: String.t, default: nil) - The error type, for example TypeError or ReferenceError. If the error type is unavailable, this field is not included.
  • scriptStackTraceElements (type: list(GoogleApi.Script.V1.Model.ScriptStackTraceElement.t), default: nil) - An array of objects that provide a stack trace through the script to show where the execution failed, with the deepest call first.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Script.V1.Model.ExecutionError{
  errorMessage: String.t() | nil,
  errorType: String.t() | nil,
  scriptStackTraceElements:
    [GoogleApi.Script.V1.Model.ScriptStackTraceElement.t()] | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.