method
error_print
v2_6_3 -
Show latest stable
- Class:
DRb::DRbServer
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