Exception: Dependabot::GitDependenciesNotReachable
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::GitDependenciesNotReachable
- 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
-
#dependency_urls ⇒ Object
readonly
Returns the value of attribute dependency_urls.
Instance Method Summary collapse
-
#initialize(*dependency_urls) ⇒ GitDependenciesNotReachable
constructor
A new instance of GitDependenciesNotReachable.
Constructor Details
#initialize(*dependency_urls) ⇒ GitDependenciesNotReachable
Returns a new instance of GitDependenciesNotReachable.
649 650 651 652 653 654 655 656 |
# File 'lib/dependabot/errors.rb', line 649 def initialize(*dependency_urls) @dependency_urls = T.let(dependency_urls.flatten.map { |uri| filter_sensitive_data(uri) }, T::Array[String]) msg = "The following git URLs could not be retrieved: " \ "#{@dependency_urls.join(', ')}" super(msg) end |
Instance Attribute Details
#dependency_urls ⇒ Object (readonly)
Returns the value of attribute dependency_urls.
646 647 648 |
# File 'lib/dependabot/errors.rb', line 646 def dependency_urls @dependency_urls end |