Exception: AWS::Flow::Core::CancellationException Private

Inherits:
Exception
  • Object
show all
Defined in:
lib/aws/flow/flow_utils.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reason = nil, details = nil) ⇒ CancellationException

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of CancellationException.



25
26
27
28
29
# File 'lib/aws/flow/flow_utils.rb', line 25

def initialize(reason = nil, details = nil)
  @reason = reason
  @details = details
  super(reason)
end

Instance Attribute Details

#detailsObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



24
25
26
# File 'lib/aws/flow/flow_utils.rb', line 24

def details
  @details
end

#reasonObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



24
25
26
# File 'lib/aws/flow/flow_utils.rb', line 24

def reason
  @reason
end