Exception: Dependabot::RepoNotFound

Inherits:
DependabotError show all
Defined in:
lib/dependabot/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, msg = nil) ⇒ RepoNotFound

Returns a new instance of RepoNotFound.



44
45
46
47
# File 'lib/dependabot/errors.rb', line 44

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

Instance Attribute Details

#sourceObject (readonly)

Returns the value of attribute source.



42
43
44
# File 'lib/dependabot/errors.rb', line 42

def source
  @source
end