Methods

Class/Module Index [+]

Quicksearch

PhusionPassenger::AppInitError

Raised when Rack::ApplicationSpawner, ClassicRails::ApplicationSpawner, ClassicRails::FrameworkSpawner or SpawnManager was unable to spawn an application, because the application either threw an exception or called exit.

If the application called exit, then child_exception is an instance of SystemExit.

Attributes

app_type[RW]

The application type, e.g. “rails” or “rack”.

stderr[RW]

Any messages printed to stderr before the failure. May be nil.

Public Class Methods

new(message, child_exception = nil, app_type = "rails", stderr = nil) click to toggle source
# File lib/phusion_passenger/exceptions.rb, line 66
def initialize(message, child_exception = nil, app_type = "rails", stderr = nil)
        super(message, child_exception)
        @app_type = app_type
        @stderr = stderr
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.