Exception: Aws::Errors::MissingBearerTokenError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Aws::Errors::MissingBearerTokenError
- Defined in:
- lib/aws-sdk-core/errors.rb
Overview
Raised when a client is unable to sign a request because the bearer token is not configured or available
Instance Method Summary collapse
-
#initialize(*args) ⇒ MissingBearerTokenError
constructor
A new instance of MissingBearerTokenError.
Constructor Details
#initialize(*args) ⇒ MissingBearerTokenError
Returns a new instance of MissingBearerTokenError.
219 220 221 222 |
# File 'lib/aws-sdk-core/errors.rb', line 219 def initialize(*args) msg = 'unable to sign request without token set' super(msg) end |