class Badgify::InvalidRequestError

Attributes

param[RW]

Public Class Methods

new(message, param, http_status = nil, http_body = nil, json_body = nil) click to toggle source
Calls superclass method
# File lib/badgify/errors/invalid_request_error.rb, line 5
def initialize(message, param, http_status = nil, http_body = nil, json_body = nil)
  super(message, http_status, http_body, json_body)
  @param = param
end