class Selenium::WebDriver::Error::ServerError

def initialize(response)

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