class Salesfly::ResponseError

Attributes

code[R]
status[R]

Public Class Methods

new(msg="", status=400, code="") click to toggle source
Calls superclass method
# File lib/salesfly/errors/response_error.rb, line 5
def initialize(msg="", status=400, code="")
  @status = status
  @code = code
  super(msg)
end