class Bundler::GenericSystemCallError
属性
underlying_error[R]
公共类方法
new(underlying_error, message) 点击切换源代码
调用父类方法
# File bundler/errors.rb, line 199 def initialize(underlying_error, message) @underlying_error = underlying_error super("#{message}\nThe underlying system error is #{@underlying_error.class}: #{@underlying_error}") end