Exception: Wechat::ResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/wechat.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(errcode, errmsg) ⇒ ResponseError

Returns a new instance of ResponseError.



21
22
23
24
# File 'lib/wechat.rb', line 21

def initialize(errcode, errmsg)
  @error_code = errcode
  super("#{errmsg}(#{error_code})")
end

Instance Attribute Details

#error_codeObject (readonly)

Returns the value of attribute error_code.



19
20
21
# File 'lib/wechat.rb', line 19

def error_code
  @error_code
end