class Selenium::WebDriver::Error::ServerError

def initialize(response)

def initialize(response)
  if response.is_a? String
    super(response)
  else
    super("status code #{response.code}")
  end
end