Raised when Railz::FrameworkSpawner or Railz::SpawnManager was unable to load a version of the Ruby on Rails framework. The child_exception attribute is guaranteed non-nil.

Methods
Attributes
[R] vendor
[R] version
Public Class methods
new(message, child_exception, options)
    # File lib/phusion_passenger/exceptions.rb, line 75
75:         def initialize(message, child_exception, options)
76:                 super(message, child_exception)
77:                 if options[:vendor]
78:                         @vendor = options[:vendor]
79:                 else
80:                         @version = options[:version]
81:                 end
82:         end