Exception: RIO::Exception::Looping

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) ⇒ Looping

Returns a new instance of Looping.



64
65
66
67
68
69
# File 'lib/rio/exception/state.rb', line 64

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.



63
64
65
# File 'lib/rio/exception/state.rb', line 63

def args
  @args
end

#objObject (readonly)

Returns the value of attribute obj.



61
62
63
# File 'lib/rio/exception/state.rb', line 61

def obj
  @obj
end

#symObject (readonly)

Returns the value of attribute sym.



62
63
64
# File 'lib/rio/exception/state.rb', line 62

def sym
  @sym
end