类 Bundler::GemRequireError

属性

orig_exception[R]

公共类方法

new(orig_exception, msg) 点击切换源代码
调用父类方法
# File bundler/errors.rb, line 137
def initialize(orig_exception, msg)
  full_message = msg + "\nGem Load Error is: #{orig_exception.message}\n"\
                  "Backtrace for gem load error is:\n"\
                  "#{orig_exception.backtrace.join("\n")}\n"\
                  "Bundler Error Backtrace:\n"
  super(full_message)
  @orig_exception = orig_exception
end