Exception: Aws::Errors::MissingCredentialsError
- Inherits:
- 
      RuntimeError
      
        - Object
- RuntimeError
- Aws::Errors::MissingCredentialsError
 
- Defined in:
- lib/aws-sdk-core/errors.rb
Overview
Raised when a client is constructed and credentials are not set, or the set credentials are empty.
Instance Method Summary collapse
- 
  
    
      #initialize(*args)  ⇒ MissingCredentialsError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MissingCredentialsError. 
Constructor Details
#initialize(*args) ⇒ MissingCredentialsError
Returns a new instance of MissingCredentialsError.
| 188 189 190 191 | # File 'lib/aws-sdk-core/errors.rb', line 188 def initialize(*args) msg = 'unable to sign request without credentials set' super(msg) end |