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.
175 176 177 178 179 180 181 |
# File 'lib/bundler/errors.rb', line 175 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 |