In Files

  • drb/drb.rb

Parent

Methods

DRb::DRbRemoteError

An exception wrapping an error object

Attributes

reason[R]

the class of the error, as a string.

Public Class Methods

new(error) click to toggle source
 
               # File drb/drb.rb, line 435
def initialize(error)
  @reason = error.class.to_s
  super("#{error.message} (#{error.class})")
  set_backtrace(error.backtrace)
end