Exception: Dependabot::RepoNotFound

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(source, msg = nil) ⇒ RepoNotFound

Returns a new instance of RepoNotFound.



334
335
336
337
# File 'lib/dependabot/errors.rb', line 334

def initialize(source, msg = nil)
  @source = source
  super(msg)
end

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



331
332
333
# File 'lib/dependabot/errors.rb', line 331

def source
  @source
end