json_create(object)
Deserializes JSON string by constructing new Exception object with message m and backtrace b serialized with to_json
# File ext/json/lib/json/add/exception.rb, line 9 def self.json_create(object) result = new(object['m']) result.set_backtrace object['b'] result end