class Kintone::Error

Attributes

response[R]

Public Class Methods

new(response, path, method_name, params) click to toggle source
Calls superclass method
# File lib/kintone/client/error.rb, line 4
def initialize(response, path, method_name, params)
  message = [response['message'], response['errors'], path, method_name, params].join(' ')
  super(message)
  @response = response
end