Exception: LogAuditor::Errors::NoFileError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/log_auditor/errors/no_file_error.rb

Constant Summary collapse

DEFAULT_MESSAGE =
'File not found!'.colorize(:red)

Instance Method Summary collapse

Constructor Details

#initialize(msg = DEFAULT_MESSAGE) ⇒ NoFileError

Returns a new instance of NoFileError.



8
9
10
# File 'lib/log_auditor/errors/no_file_error.rb', line 8

def initialize(msg = DEFAULT_MESSAGE)
  super(msg)
end