Exception: Rbnotes::NoConfFileError

Inherits:
Error
  • Object
show all
Defined in:
lib/rbnotes/error.rb

Overview

An error raised when the specified configuration file does not exist.

Instance Method Summary collapse

Constructor Details

#initialize(filename) ⇒ NoConfFileError

Returns a new instance of NoConfFileError.



86
87
88
# File 'lib/rbnotes/error.rb', line 86

def initialize(filename)
  super(ErrMsg::NO_CONF_FILE % filename)
end