Exception: Momento::Error::InternalServerError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Momento::Error::InternalServerError
- Includes:
- Momento::Error
- Defined in:
- lib/momento/error/types.rb
Overview
An unexpected error occurred while trying to fulfill the request.
Instance Attribute Summary
Attributes included from Momento::Error
#cause, #context, #details, #transport_details
Instance Method Summary collapse
-
#error_code ⇒ Symbol
A Momento-specific code for the type of error.
-
#message ⇒ String
The error message.
Methods included from Momento::Error
Instance Method Details
#error_code ⇒ Symbol
A Momento-specific code for the type of error.
115 116 117 |
# File 'lib/momento/error/types.rb', line 115 def error_code :INTERNAL_SERVER_ERROR end |
#message ⇒ String
The error message.
120 121 122 |
# File 'lib/momento/error/types.rb', line 120 def "An unexpected error occurred while trying to fulfill the request; please contact Momento: #{details}" end |