Methods
Public Instance methods
backtrace_string(current_location = nil)
     # File lib/passenger/utils.rb, line 273
273:         def backtrace_string(current_location = nil)
274:                 if current_location.nil?
275:                         location = nil
276:                 else
277:                         location = "in #{current_location} "
278:                 end
279:                 return "*** Exception #{self.class} #{location}" <<
280:                         "(#{self}) (process #{$$}):\n" <<
281:                         "\tfrom " << backtrace.join("\n\tfrom ")
282:         end