class Sitejabber::APIError

Attributes

body[R]
error_info[R]
http_status[R]

Public Class Methods

new(http_status, body, error_info = {}) click to toggle source
# File lib/sitejabber/errors.rb, line 7
def initialize http_status, body, error_info = {}
  @http_status = http_status
  @body = body
  @error_info = error_info
end