throw(tag [, obj])
Instance Public methods
Transfers control to the end of the active catch
block waiting
for tag. Raises ArgumentError
if there is no
catch
block for the tag. The optional second
parameter supplies a return value for the catch
block, which
otherwise defaults to nil
. For examples, see
Kernel::catch
.
Please login to continue.