class Bundler::DirectoryRemovalError

公共类方法

new(orig_exception, msg) 点击切换源代码
调用父类方法
# File bundler/errors.rb, line 208
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