class Dependabot::PathDependenciesNotReachable

Attributes

dependencies[R]

Public Class Methods

new(*dependencies) click to toggle source
Calls superclass method Dependabot::DependabotError::new
# File lib/dependabot/errors.rb, line 197
def initialize(*dependencies)
  @dependencies = dependencies.flatten
  msg = "The following path based dependencies could not be retrieved: "\
        "#{@dependencies.join(', ')}"
  super(msg)
end