Exception: Dependabot::UpdateNotPossible
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::UpdateNotPossible
- Extended by:
- T::Sig
- Defined in:
- lib/dependabot/errors.rb
Overview
Dependency level errors #
Constant Summary
Constants inherited from DependabotError
DependabotError::BASIC_AUTH_REGEX, DependabotError::FURY_IO_PATH_REGEX
Instance Attribute Summary collapse
-
#dependencies ⇒ Object
readonly
Returns the value of attribute dependencies.
Instance Method Summary collapse
-
#initialize(dependencies) ⇒ UpdateNotPossible
constructor
A new instance of UpdateNotPossible.
Constructor Details
#initialize(dependencies) ⇒ UpdateNotPossible
Returns a new instance of UpdateNotPossible.
656 657 658 659 660 661 |
# File 'lib/dependabot/errors.rb', line 656 def initialize(dependencies) @dependencies = dependencies msg = "The following dependencies could not be updated: #{@dependencies.join(', ')}" super(msg) end |
Instance Attribute Details
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
653 654 655 |
# File 'lib/dependabot/errors.rb', line 653 def dependencies @dependencies end |