Exception: AWS::S3::InvalidConnectionOption
- Inherits:
-
InvalidOption
- Object
- StandardError
- S3Exception
- InvalidOption
- AWS::S3::InvalidConnectionOption
- Defined in:
- lib/aws-matt/s3/exceptions.rb
Overview
Raised if an unrecognized option is passed when establishing a connection.
Instance Method Summary collapse
-
#initialize(invalid_options) ⇒ InvalidConnectionOption
constructor
A new instance of InvalidConnectionOption.
Constructor Details
#initialize(invalid_options) ⇒ InvalidConnectionOption
Returns a new instance of InvalidConnectionOption.
59 60 61 62 63 |
# File 'lib/aws-matt/s3/exceptions.rb', line 59 def initialize() = "The following connection options are invalid: #{.join(', ')}. " + "The valid connection options are: #{Connection::Options..join(', ')}." super() end |