Exception: Aws::Errors::MissingBearerTokenError

Inherits:
RuntimeError
  • Object
show all
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

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