Exception: Aws::Errors::EndpointDiscoveryError
- Inherits:
- 
      RuntimeError
      
        - Object
- RuntimeError
- Aws::Errors::EndpointDiscoveryError
 
- Defined in:
- lib/aws-sdk-core/errors.rb
Overview
Rasied when endpoint discovery failed for operations that requires endpoints from endpoint discovery
Instance Method Summary collapse
- 
  
    
      #initialize(*args)  ⇒ EndpointDiscoveryError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of EndpointDiscoveryError. 
Constructor Details
#initialize(*args) ⇒ EndpointDiscoveryError
Returns a new instance of EndpointDiscoveryError.
| 74 75 76 77 78 | # File 'lib/aws-sdk-core/errors.rb', line 74 def initialize(*args) msg = 'Endpoint discovery failed for the operation or discovered endpoint is not working, '\ 'request will keep failing until endpoint discovery succeeds or :endpoint option is provided.' super(msg) end |