Exception: Aliyun::OSS::InvalidConnectionOption
- Inherits:
-
InvalidOption
- Object
- StandardError
- OSSException
- InvalidOption
- Aliyun::OSS::InvalidConnectionOption
- Defined in:
- lib/aliyun/oss/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.
60 61 62 63 64 |
# File 'lib/aliyun/oss/exceptions.rb', line 60 def initialize() = "The following connection options are invalid: #{.join(', ')}. " + "The valid connection options are: #{Connection::Options::VALID_OPTIONS.join(', ')}." super() end |