Exception: Origami::UnterminatedObjectError

Inherits:
Error
  • Object
show all
Defined in:
lib/origami/object.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, obj) ⇒ UnterminatedObjectError

Returns a new instance of UnterminatedObjectError.



284
285
286
287
# File 'lib/origami/object.rb', line 284

def initialize(msg,obj)
    super(msg)
    @obj = obj
end

Instance Attribute Details

#objObject (readonly)

Returns the value of attribute obj.



282
283
284
# File 'lib/origami/object.rb', line 282

def obj
  @obj
end