Exception: Dependabot::RegistryError
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::RegistryError
- Extended by:
- T::Sig
- 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
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status, msg) ⇒ RegistryError
constructor
A new instance of RegistryError.
Constructor Details
#initialize(status, msg) ⇒ RegistryError
Returns a new instance of RegistryError.
628 629 630 631 |
# File 'lib/dependabot/errors.rb', line 628 def initialize(status, msg) @status = status super(msg) end |
Instance Attribute Details
#status ⇒ Object (readonly)
Returns the value of attribute status.
625 626 627 |
# File 'lib/dependabot/errors.rb', line 625 def status @status end |