Exception: Bundler::VersionConflict
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::VersionConflict
- Defined in:
- lib/bundler/errors.rb
Overview
Internal error, should be rescued
Instance Attribute Summary collapse
-
#conflicts ⇒ Object
readonly
Returns the value of attribute conflicts.
Instance Method Summary collapse
-
#initialize(conflicts, msg = nil) ⇒ VersionConflict
constructor
A new instance of VersionConflict.
Methods inherited from BundlerError
Constructor Details
#initialize(conflicts, msg = nil) ⇒ VersionConflict
Returns a new instance of VersionConflict.
27 28 29 30 |
# File 'lib/bundler/errors.rb', line 27 def initialize(conflicts, msg = nil) super(msg) @conflicts = conflicts end |
Instance Attribute Details
#conflicts ⇒ Object (readonly)
Returns the value of attribute conflicts.
25 26 27 |
# File 'lib/bundler/errors.rb', line 25 def conflicts @conflicts end |