set_backtrace(p1)
public
Sets the backtrace information
associated with exc. The backtrace must be an array of String objects or a single String in the format described in
Exception#backtrace.
Show source
static VALUE
exc_set_backtrace(VALUE exc, VALUE bt)
{
return rb_iv_set(exc, "bt", rb_check_backtrace(bt));
}