class SyncwiseApi::Errors::JSONEncodeError

Attributes

object[R]

Public Class Methods

new(object) click to toggle source
Calls superclass method
# File lib/syncwise_api/errors.rb, line 40
def initialize(object)
  @object = object
  super("Error encoding object into JSON. Object: #{@object.inspect}")
end