Exception: Restate::InternalError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/restate/errors.rb

Overview

Internal: raised when the VM encounters a retryable error.

Instance Method Summary collapse

Constructor Details

#initializeInternalError

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