Methods
Public Instance methods
backtrace_string(current_location = nil)
     # File lib/phusion_passenger/utils.rb, line 365
365:         def backtrace_string(current_location = nil)
366:                 if current_location.nil?
367:                         location = nil
368:                 else
369:                         location = "in #{current_location} "
370:                 end
371:                 return "*** Exception #{self.class} #{location}" <<
372:                         "(#{self}) (process #{$$}):\n" <<
373:                         "\tfrom " << backtrace.join("\n\tfrom ")
374:         end