class Aws::Errors::MissingBearerTokenError

Raised when a client is unable to sign a request because the bearer token is not configured or available

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/aws-sdk-core/errors.rb, line 219
def initialize(*args)
  msg = 'unable to sign request without token set'
  super(msg)
end