Method: Bundler::GemRequireError#initialize
- Defined in:
- lib/bundler/errors.rb
#initialize(orig_exception, msg) ⇒ GemRequireError
137 138 139 140 141 142 143 144 |
# File 'lib/bundler/errors.rb', line 137 def initialize(orig_exception, msg) = msg + "\nGem Load Error is: #{orig_exception.message}\n"\ "Backtrace for gem load error is:\n"\ "#{orig_exception.backtrace.join("\n")}\n"\ "Bundler Error Backtrace:\n" super() @orig_exception = orig_exception end |