Exception: RIO::Exception::CantHandle
- Defined in:
- lib/rio/exception/state.rb
Instance Attribute Summary collapse
-
#args ⇒ Object
readonly
Returns the value of attribute args.
-
#obj ⇒ Object
readonly
Returns the value of attribute obj.
-
#sym ⇒ Object
readonly
Returns the value of attribute sym.
Instance Method Summary collapse
-
#initialize(obj, sym, *args) ⇒ CantHandle
constructor
A new instance of CantHandle.
Constructor Details
#initialize(obj, sym, *args) ⇒ CantHandle
Returns a new instance of CantHandle.
42 43 44 45 46 47 |
# File 'lib/rio/exception/state.rb', line 42 def initialize(obj,sym,*args) super(obj) @obj = obj @sym = sym @args = args end |
Instance Attribute Details
#args ⇒ Object (readonly)
Returns the value of attribute args.
41 42 43 |
# File 'lib/rio/exception/state.rb', line 41 def args @args end |
#obj ⇒ Object (readonly)
Returns the value of attribute obj.
39 40 41 |
# File 'lib/rio/exception/state.rb', line 39 def obj @obj end |
#sym ⇒ Object (readonly)
Returns the value of attribute sym.
40 41 42 |
# File 'lib/rio/exception/state.rb', line 40 def sym @sym end |