Exception: RIO::Exception::CantHandle

Inherits:
State show all
Defined in:
lib/rio/exception/state.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(obj, sym, *args) ⇒ CantHandle

Returns a new instance of CantHandle.



53
54
55
56
57
58
# File 'lib/rio/exception/state.rb', line 53

def initialize(obj,sym,*args)
  super(obj)
  @obj = obj
  @sym = sym
  @args = args
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



52
53
54
# File 'lib/rio/exception/state.rb', line 52

def args
  @args
end

#objObject (readonly)

Returns the value of attribute obj.



50
51
52
# File 'lib/rio/exception/state.rb', line 50

def obj
  @obj
end

#symObject (readonly)

Returns the value of attribute sym.



51
52
53
# File 'lib/rio/exception/state.rb', line 51

def sym
  @sym
end