In Files

  • proc.c

LocalJumpError

Exceptions

Public Instance Methods

exit_value() click to toggle source

call_seq:

local_jump_error.exit_value  => obj

Returns the exit value associated with this LocalJumpError.

 
               static VALUE
localjump_xvalue(VALUE exc)
{
    return rb_iv_get(exc, "@exit_value");
}
            
reason => symbol click to toggle source

The reason this block was terminated: :break, :redo, :retry, :next, :return, or :noreason.

 
               static VALUE
localjump_reason(VALUE exc)
{
    return rb_iv_get(exc, "@reason");
}