Exception: Dependabot::NpmAndYarn::UpdateChecker::LatestVersionFinder::RegistryError
- Inherits:
-
StandardError
- Object
- StandardError
- Dependabot::NpmAndYarn::UpdateChecker::LatestVersionFinder::RegistryError
- Defined in:
- lib/dependabot/npm_and_yarn/update_checker/latest_version_finder.rb
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.
23 24 25 26 |
# File 'lib/dependabot/npm_and_yarn/update_checker/latest_version_finder.rb', line 23 def initialize(status, msg) @status = status super(msg) end |
Instance Attribute Details
#status ⇒ Object (readonly)
Returns the value of attribute status.
21 22 23 |
# File 'lib/dependabot/npm_and_yarn/update_checker/latest_version_finder.rb', line 21 def status @status end |