class Dependabot::GitDependencyReferenceNotFound

Attributes

dependency[R]

Public Class Methods

new(dependency) click to toggle source
Calls superclass method Dependabot::DependabotError::new
# File lib/dependabot/errors.rb, line 185
def initialize(dependency)
  @dependency = dependency

  msg = "The branch or reference specified for #{@dependency} could not "\
        "be retrieved"
  super(msg)
end