Methods
Public Instance methods
[ show source ]
# File lib/phusion_passenger/utils.rb, line 353 353: def backtrace_string(current_location = nil) 354: if current_location.nil? 355: location = nil 356: else 357: location = "in #{current_location} " 358: end 359: return "*** Exception #{self.class} #{location}" << 360: "(#{self}) (process #{$$}):\n" << 361: "\tfrom " << backtrace.join("\n\tfrom ") 362: end