method

error_print

error_print(exception)
private

No documentation available.

# File lib/drb/drb.rb, line 1646
    def error_print(exception)
      exception.backtrace.inject(true) do |first, x|
        if first
          $stderr.puts "#{x}: #{exception} (#{exception.class})"
        else
          $stderr.puts "\tfrom #{x}"
        end
        false
      end
    end