Exception: Bundler::VersionConflict
- Inherits:
-
BundlerError
- Object
- StandardError
- BundlerError
- Bundler::VersionConflict
- Defined in:
- lib/bundler.rb
Overview
Internal errors, 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.
63 64 65 66 |
# File 'lib/bundler.rb', line 63 def initialize(conflicts, msg = nil) super(msg) @conflicts = conflicts end |
Instance Attribute Details
#conflicts ⇒ Object (readonly)
Returns the value of attribute conflicts.
61 62 63 |
# File 'lib/bundler.rb', line 61 def conflicts @conflicts end |