Exception: Aws::Errors::InvalidARNPartitionError
- Inherits:
- 
      RuntimeError
      
        - Object
- RuntimeError
- Aws::Errors::InvalidARNPartitionError
 
- Defined in:
- lib/aws-sdk-core/errors.rb
Overview
Raised when the partition of the ARN region is different than the partition of the :region configured on the service client.
Instance Method Summary collapse
- 
  
    
      #initialize(*args)  ⇒ InvalidARNPartitionError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InvalidARNPartitionError. 
Constructor Details
#initialize(*args) ⇒ InvalidARNPartitionError
Returns a new instance of InvalidARNPartitionError.
| 154 155 156 157 158 | # File 'lib/aws-sdk-core/errors.rb', line 154 def initialize(*args) msg = 'ARN region partition is different from the configured '\ 'client region partition.' super(msg) end |