class Telleroo::Error

Handle Errors returned from API

Attributes

http_headers[R]

Public Class Methods

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