class KijiRest::Client::KijiRestClientError

Error class that wraps exceptions thrown by the server

Attributes

json_error_message[R]

Public Class Methods

new(json_error) click to toggle source
# File lib/kijirest/client.rb, line 36
def initialize(json_error)
  @json_error_message =  json_error
end

Public Instance Methods

to_s() click to toggle source
# File lib/kijirest/client.rb, line 40
def to_s
  json_error_message.to_json
end