class FullContact::Error

Custom error class for rescuing from all FullContact errors

Attributes

http_headers[R]

Public Class Methods

new(message, http_headers) click to toggle source
Calls superclass method
# File lib/fullcontact/error.rb, line 6
def initialize(message, http_headers)
  @http_headers = Hash[http_headers]
  super message
end