class Rudy::AWS::SDB::ConnectionError

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method Rudy::Error.new
# File lib/rudy/aws/sdb/error.rb, line 34
def initialize(response)
  super(
    "#{response.code} \
     #{response.message if response.respond_to?(:message)}"
  )
  @response = response
end