Exception: Dependabot::BranchNotFound

Inherits:
DependabotError show all
Defined in:
lib/dependabot/errors.rb

Overview

Repo level errors #

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(branch_name, msg = nil) ⇒ BranchNotFound

Returns a new instance of BranchNotFound.



34
35
36
37
38
# File 'lib/dependabot/errors.rb', line 34

def initialize(branch_name, msg = nil)
  @branch_name = branch_name
  msg = sanitize_message(msg)
  super(msg)
end

Instance Attribute Details

#branch_nameObject (readonly)

Returns the value of attribute branch_name.



32
33
34
# File 'lib/dependabot/errors.rb', line 32

def branch_name
  @branch_name
end