An exception wrapping an error object
Creates a new remote error that wraps the Exception error
# File ruby-3.1.2/lib/drb/drb.rb, line 433
def initialize(error)
@reason = error.class.to_s
super("#{error.message} (#{error.class})")
set_backtrace(error.backtrace)
end