Exception: Bugly::InvalidRequestError

Inherits:
BuglyError
  • Object
show all
Defined in:
lib/bugly.rb

Instance Attribute Summary collapse

Attributes inherited from BuglyError

#http_body, #http_status, #json_body, #message

Instance Method Summary collapse

Methods inherited from BuglyError

#to_s

Constructor Details

#initialize(message, param, http_status = nil, http_body = nil, json_body = nil) ⇒ InvalidRequestError

Returns a new instance of InvalidRequestError.



515
516
517
518
# File 'lib/bugly.rb', line 515

def initialize(message, param, http_status=nil, http_body=nil, json_body=nil)
  super(message, http_status, http_body, json_body)
  @param = param
end

Instance Attribute Details

#paramObject

Returns the value of attribute param.



513
514
515
# File 'lib/bugly.rb', line 513

def param
  @param
end