Exception: Bundler::GenericSystemCallError
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::GenericSystemCallError
- Defined in:
- lib/bundler/errors.rb
Instance Attribute Summary collapse
-
#underlying_error ⇒ Object
readonly
Returns the value of attribute underlying_error.
Instance Method Summary collapse
-
#initialize(underlying_error, message) ⇒ GenericSystemCallError
constructor
A new instance of GenericSystemCallError.
Methods inherited from BundlerError
Constructor Details
#initialize(underlying_error, message) ⇒ GenericSystemCallError
Returns a new instance of GenericSystemCallError.
199 200 201 202 |
# File 'lib/bundler/errors.rb', line 199 def initialize(, ) @underlying_error = super("#{}\nThe underlying system error is #{@underlying_error.class}: #{@underlying_error}") end |
Instance Attribute Details
#underlying_error ⇒ Object (readonly)
Returns the value of attribute underlying_error.
197 198 199 |
# File 'lib/bundler/errors.rb', line 197 def @underlying_error end |