class Google::Apis::ScriptV1::ScriptStackTraceElement
A stack trace through the script that shows where the execution failed.
Attributes
function[RW]
The name of the function that failed. Corresponds to the JSON property `function` @return [String]
line_number[RW]
The line number where the script failed. Corresponds to the JSON property `lineNumber` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/script_v1/classes.rb, line 221 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/script_v1/classes.rb, line 226 def update!(**args) @function = args[:function] if args.key?(:function) @line_number = args[:line_number] if args.key?(:line_number) end