Exception: JPush::Utils::Exceptions::JPushResponseError

Inherits:
JPushError
  • Object
show all
Defined in:
lib/jpush/utils/exceptions.rb

Instance Attribute Summary collapse

Attributes inherited from JPushError

#message

Instance Method Summary collapse

Constructor Details

#initialize(http_code, error_code, error_message) ⇒ JPushResponseError

Returns a new instance of JPushResponseError.



15
16
17
18
19
# File 'lib/jpush/utils/exceptions.rb', line 15

def initialize(http_code, error_code, error_message)
  @http_code, @error_code, @error_message = http_code, error_code, error_message
  @error_message = "UnknownError[#{@http_code}]." if @error_message.nil?
  super("#{@error_message} (error code: #{@error_code}) ")
end

Instance Attribute Details

#error_codeObject (readonly)

Returns the value of attribute error_code.



13
14
15
# File 'lib/jpush/utils/exceptions.rb', line 13

def error_code
  @error_code
end

#error_messageObject (readonly)

Returns the value of attribute error_message.



13
14
15
# File 'lib/jpush/utils/exceptions.rb', line 13

def error_message
  @error_message
end

#http_codeObject (readonly)

Returns the value of attribute http_code.



13
14
15
# File 'lib/jpush/utils/exceptions.rb', line 13

def http_code
  @http_code
end

Instance Method Details

#to_sObject



21
22
23
# File 'lib/jpush/utils/exceptions.rb', line 21

def to_s
  "#{@message}. http status code: #{@http_code}"
end