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.



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

#argsObject (readonly)

Returns the value of attribute args.



41
42
43
# File 'lib/rio/exception/state.rb', line 41

def args
  @args
end

#objObject (readonly)

Returns the value of attribute obj.



39
40
41
# File 'lib/rio/exception/state.rb', line 39

def obj
  @obj
end

#symObject (readonly)

Returns the value of attribute sym.



40
41
42
# File 'lib/rio/exception/state.rb', line 40

def sym
  @sym
end