class Bundler::GenericSystemCallError

Parent:
Bundler::BundlerError

Attributes

underlying_error[R]

Public Class Methods

new(underlying_error, message) Show source
# File lib/bundler/errors.rb, line 151
def initialize(underlying_error, message)
  @underlying_error = underlying_error
  super("#{message}\nThe underlying system error is #{@underlying_error.class}: #{@underlying_error}")
end
Calls superclass method Exception::new

Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.