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.
138 139 140 |
# File 'lib/temporalio/error/failure.rb', line 138 def non_retryable @non_retryable end |
Instance Method Details
#retryable? ⇒ Boolean
Returns Inverse of #non_retryable.
147 148 149 |
# File 'lib/temporalio/error/failure.rb', line 147 def retryable? !@non_retryable end |