Exception: Bundler::DirectoryRemovalError
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::DirectoryRemovalError
- Defined in:
- lib/bundler/errors.rb
Instance Method Summary collapse
-
#initialize(orig_exception, msg) ⇒ DirectoryRemovalError
constructor
A new instance of DirectoryRemovalError.
Methods inherited from BundlerError
Constructor Details
#initialize(orig_exception, msg) ⇒ DirectoryRemovalError
Returns a new instance of DirectoryRemovalError.
208 209 210 211 212 213 214 |
# File 'lib/bundler/errors.rb', line 208 def initialize(orig_exception, msg) = "#{msg}.\n" \ "The underlying error was #{orig_exception.class}: #{orig_exception.}, with backtrace:\n" \ " #{orig_exception.backtrace.join("\n ")}\n\n" \ "Bundler Error Backtrace:" super() end |