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.



635
636
637
638
# File 'lib/dependabot/errors.rb', line 635

def initialize(status, msg)
  @status = status
  super(msg)
end

Instance Attribute Details

#statusObject (readonly)

Returns the value of attribute status.



632
633
634
# File 'lib/dependabot/errors.rb', line 632

def status
  @status
end