class Dependabot::GitDependenciesNotReachable

Dependency level errors #

Attributes

dependency_urls[R]

Public Class Methods

new(*dependency_urls) click to toggle source
Calls superclass method Dependabot::DependabotError::new
# File lib/dependabot/errors.rb, line 172
def initialize(*dependency_urls)
  @dependency_urls =
    dependency_urls.flatten.map { |uri| filter_sensitive_data(uri) }

  msg = "The following git URLs could not be retrieved: "\
        "#{@dependency_urls.join(', ')}"
  super(msg)
end