Exception: Origami::UnterminatedObjectError
- Inherits:
-
Exception
- Object
- Exception
- Origami::UnterminatedObjectError
- Defined in:
- lib/origami/object.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#obj ⇒ Object
readonly
Returns the value of attribute obj.
Instance Method Summary collapse
-
#initialize(msg, obj) ⇒ UnterminatedObjectError
constructor
A new instance of UnterminatedObjectError.
Constructor Details
#initialize(msg, obj) ⇒ UnterminatedObjectError
Returns a new instance of UnterminatedObjectError.
231 232 233 234 |
# File 'lib/origami/object.rb', line 231 def initialize(msg,obj) super(msg) @obj = obj end |
Instance Attribute Details
#obj ⇒ Object (readonly)
Returns the value of attribute obj.
230 231 232 |
# File 'lib/origami/object.rb', line 230 def obj @obj end |