Method: Dependabot::BranchNotFound#initialize
- Defined in:
- lib/dependabot/errors.rb
#initialize(branch_name, msg = nil) ⇒ BranchNotFound
Returns a new instance of BranchNotFound.
59 60 61 62 |
# File 'lib/dependabot/errors.rb', line 59 def initialize(branch_name, msg = nil) @branch_name = branch_name super(msg) end |