class Dependabot::BranchNotFound

Repo level errors #

Attributes

branch_name[R]

Public Class Methods

new(branch_name, msg = nil) click to toggle source
Calls superclass method Dependabot::DependabotError::new
# File lib/dependabot/errors.rb, line 59
def initialize(branch_name, msg = nil)
  @branch_name = branch_name
  super(msg)
end