class AWS::Flow::ActivityTaskTimedOutException
This exception is thrown if an activity was timed out by Amazon SWF. This could happen if the activity task could not be assigned to the worker within the require time period or could not be completed by the worker in the required time. You can set these timeouts on the activity using the @ActivityRegistrationOptions annotation or using the ‘ActivitySchedulingOptions` parameter when calling the activity method.
@abstract An exception raised when the activity task has timed out.
Public Class Methods
new(id, activity_id, reason, details)
click to toggle source
Creates a new ‘ActivityTaskTimeoutException`.
Calls superclass method
AWS::Flow::FlowException::new
# File lib/aws/decider/exceptions.rb, line 149 def initialize(id, activity_id, reason, details) @id = id @activity_id = activity_id super(reason, details) end