google_api_script v0.10.0 GoogleApi.Script.V1.Model.ExecutionError 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 exampleTypeError
orReferenceError
. 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.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
Link to this type
t()
View Sourcet() :: %GoogleApi.Script.V1.Model.ExecutionError{ errorMessage: String.t(), errorType: String.t(), scriptStackTraceElements: [ GoogleApi.Script.V1.Model.ScriptStackTraceElement.t() ] }
Link to this section Functions
Unwrap a decoded JSON object into its complex fields.