class Google::Apis::WorkflowexecutionsV1beta::StackTraceElement

A single stack element (frame) where an error occurred.

Attributes

position[RW]

Position contains source position information about the stack trace element such as line number, column number and length of the code block in bytes. Corresponds to the JSON property `position` @return [Google::Apis::WorkflowexecutionsV1beta::Position]

routine[RW]

The routine where the error occurred. Corresponds to the JSON property `routine` @return [String]

step[RW]

The step the error occurred at. Corresponds to the JSON property `step` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/workflowexecutions_v1beta/classes.rb, line 241
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/workflowexecutions_v1beta/classes.rb, line 246
def update!(**args)
  @position = args[:position] if args.key?(:position)
  @routine = args[:routine] if args.key?(:routine)
  @step = args[:step] if args.key?(:step)
end