Exception: Exception
- Defined in:
- lib/json/add/exception.rb
Overview
Exception serialization/deserialization
Class Method Summary collapse
-
.json_create(object) ⇒ Object
Deserializes JSON string by constructing new Exception object with message
m
and backtraceb
serialized withto_json
.
Instance Method Summary collapse
-
#as_json ⇒ Object
Returns a hash, that will be turned into a JSON object and represent this object.
-
#to_json(*args) ⇒ Object
Stores class name (Exception) with message
m
and backtrace arrayb
as JSON string.
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
10 11 12 13 14 |
# File 'lib/json/add/exception.rb', line 10 def self.json_create(object) result = new(object['m']) result.set_backtrace object['b'] result end |
Instance Method Details
#as_json ⇒ Object
Returns a hash, that will be turned into a JSON object and represent this object.
18 19 20 21 22 23 24 |
# File 'lib/json/add/exception.rb', line 18 def as_json(*) { JSON.create_id => self.class.name, 'm' => , 'b' => backtrace, } end |
#to_json(*args) ⇒ Object
Stores class name (Exception) with message m
and backtrace array b
as JSON string
28 29 30 |
# File 'lib/json/add/exception.rb', line 28 def to_json(*args) as_json.to_json(*args) end |