Exception: Dependabot::RegistryError

Inherits:
DependabotError show all
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

Instance Method Summary collapse

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

#statusObject (readonly)

Returns the value of attribute status.



625
626
627
# File 'lib/dependabot/errors.rb', line 625

def status
  @status
end