Exception: JSON::JSONError

Inherits:
StandardError
  • Object
show all
Defined in:
ext/json/lib/json/common.rb

Overview

The base exception for JSON errors.

Class Method Summary collapse

Class Method Details

.wrap(exception) ⇒ Object



141
142
143
144
145
# File 'ext/json/lib/json/common.rb', line 141

def self.wrap(exception)
  obj = new("Wrapped(#{exception.class}): #{exception.message.inspect}")
  obj.set_backtrace exception.backtrace
  obj
end