class DRb::DRbRemoteError

An exception wrapping an error object

def initialize(error)

Creates a new remote error that wraps the Exception +error+
def initialize(error)
  @reason = error.class.to_s
  super("#{error.message} (#{error.class})")
  set_backtrace(error.backtrace)
end