Exception: MultiJson::AdapterError

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/multi_json/adapter_error.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#causeObject (readonly)

Returns the value of attribute cause.



3
4
5
# File 'lib/multi_json/adapter_error.rb', line 3

def cause
  @cause
end

Class Method Details

.build(original_exception) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/multi_json/adapter_error.rb', line 5

def self.build(original_exception)
  message = "Did not recognize your adapter specification (#{original_exception.message})."
  new(message).tap do |exception|
    exception.instance_eval do
      @cause = original_exception
      set_backtrace original_exception.backtrace
    end
  end
end