Exception: Dependabot::DirectoryNotFound

Inherits:
DependabotError show all
Extended by:
T::Sig
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.



308
309
310
311
# File 'lib/dependabot/errors.rb', line 308

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.



305
306
307
# File 'lib/dependabot/errors.rb', line 305

def directory_name
  @directory_name
end