Exception: Dependabot::DirectoryNotFound
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::DirectoryNotFound
- Defined in:
- lib/dependabot/errors.rb
Overview
Repo level errors #
Constant Summary
Constants inherited from DependabotError
Dependabot::DependabotError::BASIC_AUTH_REGEX, Dependabot::DependabotError::FURY_IO_PATH_REGEX
Instance Attribute Summary collapse
-
#directory_name ⇒ Object
readonly
Returns the value of attribute directory_name.
Instance Method Summary collapse
-
#initialize(directory_name, msg = nil) ⇒ DirectoryNotFound
constructor
A new instance of DirectoryNotFound.
Constructor Details
#initialize(directory_name, msg = nil) ⇒ DirectoryNotFound
Returns a new instance of DirectoryNotFound.
60 61 62 63 |
# File 'lib/dependabot/errors.rb', line 60 def initialize(directory_name, msg = nil) @directory_name = directory_name super(msg) end |
Instance Attribute Details
#directory_name ⇒ Object (readonly)
Returns the value of attribute directory_name.
58 59 60 |
# File 'lib/dependabot/errors.rb', line 58 def directory_name @directory_name end |