Exception: Exception

Defined in:
lib/json/add/core.rb

Overview

Exception serialization/deserialization

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.json_create(object) ⇒ Object

Deserializes JSON string by constructing new Exception object with message m and backtrace b serialized with to_json



195
196
197
198
199
# File 'lib/json/add/core.rb', line 195

def self.json_create(object)
  result = new(object['m'])
  result.set_backtrace object['b']
  result
end

Instance Method Details

#as_jsonObject

Returns a hash, that will be turned into a JSON object and represent this object.



203
204
205
206
207
208
209
# File 'lib/json/add/core.rb', line 203

def as_json(*)
  {
    JSON.create_id => self.class.name,
    'm'            => message,
    'b'            => backtrace,
  }
end

#to_json(*args) ⇒ Object

Stores class name (Exception) with message m and backtrace array b as JSON string



213
214
215
# File 'lib/json/add/core.rb', line 213

def to_json(*args)
  as_json.to_json(*args)
end