Exception: Temporalio::Error::ServerError
- Inherits:
-
Failure
- Object
- StandardError
- Temporalio::Error
- Failure
- Temporalio::Error::ServerError
- Defined in:
- lib/temporalio/error/failure.rb
Overview
Error originating in the Temporal server.
Instance Attribute Summary collapse
-
#non_retryable ⇒ Boolean
readonly
Whether this error is non-retryable.
Instance Method Summary collapse
-
#retryable? ⇒ Boolean
Inverse of #non_retryable.
Methods inherited from Temporalio::Error
Instance Attribute Details
#non_retryable ⇒ Boolean (readonly)
Returns Whether this error is non-retryable.
120 121 122 |
# File 'lib/temporalio/error/failure.rb', line 120 def non_retryable @non_retryable end |
Instance Method Details
#retryable? ⇒ Boolean
Returns Inverse of #non_retryable.
129 130 131 |
# File 'lib/temporalio/error/failure.rb', line 129 def retryable? !@non_retryable end |