Exception: Smith::DeterministicStepFailure
- Inherits:
-
WorkflowError
- Object
- StandardError
- Error
- WorkflowError
- Smith::DeterministicStepFailure
- Defined in:
- lib/smith/errors.rb
Instance Attribute Summary collapse
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#kind ⇒ Object
readonly
Returns the value of attribute kind.
-
#retryable ⇒ Object
readonly
Returns the value of attribute retryable.
Instance Method Summary collapse
-
#initialize(message, retryable: nil, kind: nil, details: nil) ⇒ DeterministicStepFailure
constructor
A new instance of DeterministicStepFailure.
Constructor Details
#initialize(message, retryable: nil, kind: nil, details: nil) ⇒ DeterministicStepFailure
Returns a new instance of DeterministicStepFailure.
68 69 70 71 72 73 |
# File 'lib/smith/errors.rb', line 68 def initialize(, retryable: nil, kind: nil, details: nil) @retryable = retryable @kind = kind @details = details super() end |
Instance Attribute Details
#details ⇒ Object (readonly)
Returns the value of attribute details.
66 67 68 |
# File 'lib/smith/errors.rb', line 66 def details @details end |
#kind ⇒ Object (readonly)
Returns the value of attribute kind.
66 67 68 |
# File 'lib/smith/errors.rb', line 66 def kind @kind end |
#retryable ⇒ Object (readonly)
Returns the value of attribute retryable.
66 67 68 |
# File 'lib/smith/errors.rb', line 66 def retryable @retryable end |