class ChatWork::APIError

Attributes

errors[R]

Public Class Methods

new(status, error_response) click to toggle source
Calls superclass method ChatWork::ChatWorkError::new
# File lib/chatwork/chatwork_error.rb, line 55
def initialize(status, error_response)
  @errors = error_response
  super(error_response[0], status, error_response)
end