Exception: DirNotExistError

Inherits:
NotExistError show all
Defined in:
lib/require_smasher/errors/not_exist_error/dir_not_exist_error.rb

Overview

Define class for handle errors about inexistent directory

Instance Method Summary collapse

Constructor Details

#initialize(message = 'Directory does not exist') ⇒ DirNotExistError

Returns a new instance of DirNotExistError.



6
7
8
# File 'lib/require_smasher/errors/not_exist_error/dir_not_exist_error.rb', line 6

def initialize(message = 'Directory does not exist')
  super(message)
end