class Pingpp::ChannelError
Attributes
code[RW]
param[RW]
Public Class Methods
new(message, code, param=nil, http_status=nil, http_body=nil, json_body=nil, http_headers=nil)
click to toggle source
Calls superclass method
# File lib/pingpp/errors/channel_error.rb, line 6 def initialize(message, code, param=nil, http_status=nil, http_body=nil, json_body=nil, http_headers=nil) super(message, http_status, http_body, json_body, http_headers) @code = code @param = param end