Class: Google::Apis::ScriptV1::ExecutionError
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::ExecutionError
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
 generated/google/apis/script_v1/representations.rb,
 generated/google/apis/script_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
- 
  
    
      #error_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error message thrown by Apps Script, usually localized into the user's language. 
- 
  
    
      #error_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The error type, for example TypeErrororReferenceError.
- 
  
    
      #script_stack_trace_elements  ⇒ Array<Google::Apis::ScriptV1::ScriptStackTraceElement> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of objects that provide a stack trace through the script to show where the execution failed, with the deepest call first. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ExecutionError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ExecutionError. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ExecutionError
Returns a new instance of ExecutionError
| 251 252 253 | # File 'generated/google/apis/script_v1/classes.rb', line 251 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#error_message ⇒ String
The error message thrown by Apps Script, usually localized into the user's
language.
Corresponds to the JSON property errorMessage
| 237 238 239 | # File 'generated/google/apis/script_v1/classes.rb', line 237 def @error_message end | 
#error_type ⇒ String
The error type, for example TypeError or ReferenceError. If the error
type is unavailable, this field is not included.
Corresponds to the JSON property errorType
| 243 244 245 | # File 'generated/google/apis/script_v1/classes.rb', line 243 def error_type @error_type end | 
#script_stack_trace_elements ⇒ Array<Google::Apis::ScriptV1::ScriptStackTraceElement>
An array of objects that provide a stack trace through the script to show
where the execution failed, with the deepest call first.
Corresponds to the JSON property scriptStackTraceElements
| 249 250 251 | # File 'generated/google/apis/script_v1/classes.rb', line 249 def script_stack_trace_elements @script_stack_trace_elements end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 256 257 258 259 260 | # File 'generated/google/apis/script_v1/classes.rb', line 256 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @error_type = args[:error_type] if args.key?(:error_type) @script_stack_trace_elements = args[:script_stack_trace_elements] if args.key?(:script_stack_trace_elements) end |