Exception: Dependabot::DirectoryNotFound

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

Overview

Repo level errors #

Constant Summary

Constants inherited from DependabotError

Dependabot::DependabotError::BASIC_AUTH_REGEX, Dependabot::DependabotError::FURY_IO_PATH_REGEX

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(directory_name, msg = nil) ⇒ DirectoryNotFound

Returns a new instance of DirectoryNotFound.



60
61
62
63
# File 'lib/dependabot/errors.rb', line 60

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

Instance Attribute Details

#directory_nameObject (readonly)

Returns the value of attribute directory_name.



58
59
60
# File 'lib/dependabot/errors.rb', line 58

def directory_name
  @directory_name
end