Flowdock
method

save_exception_mode

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: BigDecimal
save_exception_mode() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
static VALUE
BigDecimal_save_exception_mode(VALUE self)
{
    unsigned short const exception_mode = VpGetException();
    int state;
    VALUE ret = rb_protect(rb_yield, Qnil, &state);
    VpSetException(exception_mode);
    if (state) rb_jump_tag(state);
    return ret;
}
Register or log in to add new notes.