Exception: Dependabot::BranchNotFound
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::BranchNotFound
- Defined in:
- lib/dependabot/errors.rb
Constant Summary
Constants inherited from DependabotError
DependabotError::BASIC_AUTH_REGEX, DependabotError::FURY_IO_PATH_REGEX
Instance Attribute Summary collapse
-
#branch_name ⇒ Object
readonly
Returns the value of attribute branch_name.
Instance Method Summary collapse
-
#initialize(branch_name, msg = nil) ⇒ BranchNotFound
constructor
A new instance of BranchNotFound.
Constructor Details
#initialize(branch_name, msg = nil) ⇒ BranchNotFound
Returns a new instance of BranchNotFound.
69 70 71 72 |
# File 'lib/dependabot/errors.rb', line 69 def initialize(branch_name, msg = nil) @branch_name = branch_name super(msg) end |
Instance Attribute Details
#branch_name ⇒ Object (readonly)
Returns the value of attribute branch_name.
67 68 69 |
# File 'lib/dependabot/errors.rb', line 67 def branch_name @branch_name end |