Class Exception
In: lib/phusion_passenger/utils.rb
Parent: Object

Methods

Public Instance methods

[Source]

     # File lib/phusion_passenger/utils.rb, line 360
360:         def backtrace_string(current_location = nil)
361:                 if current_location.nil?
362:                         location = nil
363:                 else
364:                         location = "in #{current_location} "
365:                 end
366:                 return "*** Exception #{self.class} #{location}" <<
367:                         "(#{self}) (process #{$$}):\n" <<
368:                         "\tfrom " << backtrace.join("\n\tfrom ")
369:         end

[Validate]