123456789_123456789_123456789_123456789_123456789_

Exception: Bundler::DirectoryRemovalError

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

Constructor Details

.new(orig_exception, msg) ⇒ DirectoryRemovalError

[ GitHub ]

  
# File 'lib/bundler/errors.rb', line 175

def initialize(orig_exception, msg)
  full_message = "#{msg}.\n" \
                 "The underlying error was #{orig_exception.class}: #{orig_exception.message}, with backtrace:\n" \
                 "  #{orig_exception.backtrace.join("\n  ")}\n\n" \
                 "Bundler Error Backtrace:"
  super(full_message)
end