Exception: Restate::InternalError
- Inherits:
-
StandardError
- Object
- StandardError
- Restate::InternalError
- Defined in:
- lib/restate/errors.rb
Overview
Internal: raised when the VM encounters a retryable error.
Instance Method Summary collapse
-
#initialize ⇒ InternalError
constructor
A new instance of InternalError.
Constructor Details
#initialize ⇒ InternalError
Returns a new instance of InternalError.
33 34 35 36 37 38 |
# File 'lib/restate/errors.rb', line 33 def initialize super( "Invocation attempt raised a retryable error.\n" \ 'Restate will retry executing this invocation from the point where it left off.' ) end |