Object
Deserializes JSON string by constructing new Exception object with message m and backtrace b serialized with to_json
JSON
Exception
m
b
to_json
# File json/lib/json/add/exception.rb, line 10 def self.json_create(object) result = new(object['m']) result.set_backtrace object['b'] result end
Returns a hash, that will be turned into a JSON object and represent this object.
# File json/lib/json/add/exception.rb, line 18 def as_json(*) { JSON.create_id => self.class.name, 'm' => message, 'b' => backtrace, } end
Stores class name (Exception) with message m and backtrace array b as JSON string
# File json/lib/json/add/exception.rb, line 28 def to_json(*args) as_json.to_json(*args) end
This page was generated for Ruby 3.0.0
Ruby-doc.org is provided by James Britt and Neurogami. Hack your world. Feed your head. Live curious.
Generated with Ruby-doc Rdoc Generator 0.42.0.