Exception: Momento::Error::AuthenticationError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Momento::Error::AuthenticationError
- Includes:
- Momento::Error
- Defined in:
- lib/momento/error/types.rb
Overview
Invalid authentication credentials to connect to cache service
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.
25 26 27 |
# File 'lib/momento/error/types.rb', line 25 def error_code :AUTHENTICATION_ERROR end |
#message ⇒ String
The error message.
30 31 32 |
# File 'lib/momento/error/types.rb', line 30 def "Invalid authentication credentials to connect to cache service: #{details}" end |