Exception: Bundler::GemRequireError
| Relationships & Source Files | |
| Super Chains via Extension / Inclusion / Inheritance | |
| Class Chain: 
          self,
           BundlerError,
          StandardError | |
| Instance Chain: 
          self,
           BundlerError,
          StandardError | |
| Inherits: | Bundler::BundlerError 
 | 
| Defined in: | lib/bundler/errors.rb | 
Class Method Summary
- .new(orig_exception, msg) ⇒ GemRequireError constructor
BundlerError - Inherited
Instance Attribute Summary
- #orig_exception readonly
Constructor Details
    .new(orig_exception, msg)  ⇒ GemRequireError 
  
# File 'lib/bundler/errors.rb', line 106
def initialize(orig_exception, msg) = msg + "\nGem Load Error is: #{orig_exception.}\n"\ "Backtrace for gem load error is:\n"\ "#{orig_exception.backtrace.join("\n")}\n"\ "Bundler Error Backtrace:\n" super() @orig_exception = orig_exception end
Instance Attribute Details
#orig_exception (readonly)
[ GitHub ]# File 'lib/bundler/errors.rb', line 104
attr_reader :orig_exception