Exception: AWS::S3::InvalidConnectionOption

Inherits:
InvalidOption show all
Defined in:
lib/aws/s3/exceptions.rb

Overview

Raised if an unrecognized option is passed when establishing a connection.

Instance Method Summary collapse

Constructor Details

#initialize(invalid_options) ⇒ InvalidConnectionOption

Returns a new instance of InvalidConnectionOption.



59
60
61
62
63
# File 'lib/aws/s3/exceptions.rb', line 59

def initialize(invalid_options)
  message = "The following connection options are invalid: #{invalid_options.join(', ')}. "    +
            "The valid connection options are: #{Connection::Options::VALID_OPTIONS.join(', ')}."
  super(message)
end