Exception: Temporal::Error::ResetWorkflowError

Inherits:
Failure show all
Defined in:
lib/temporal/error/failure.rb

Instance Attribute Summary collapse

Attributes inherited from Failure

#raw

Instance Method Summary collapse

Methods inherited from Failure

#cause

Constructor Details

#initialize(message, last_heartbeat_details: [], raw: nil, cause: nil) ⇒ ResetWorkflowError



98
99
100
101
102
# File 'lib/temporal/error/failure.rb', line 98

def initialize(message, last_heartbeat_details: [], raw: nil, cause: nil)
  super(message, raw: raw, cause: cause)

  @last_heartbeat_details = last_heartbeat_details
end

Instance Attribute Details

#last_heartbeat_detailsArray<any> (readonly)



96
97
98
# File 'lib/temporal/error/failure.rb', line 96

def last_heartbeat_details
  @last_heartbeat_details
end