Methods
Public Instance methods
backtrace_string(current_location = nil)
     # File lib/phusion_passenger/utils.rb, line 449
449:         def backtrace_string(current_location = nil)
450:                 if current_location.nil?
451:                         location = nil
452:                 else
453:                         location = "in #{current_location} "
454:                 end
455:                 return "*** Exception #{self.class} #{location}" <<
456:                         "(#{self}) (process #{$$}):\n" <<
457:                         "\tfrom " << backtrace.join("\n\tfrom ")
458:         end