Exception: Rbnotes::NoTemplateFileError

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

Overview

An error raised when the specified template files does not exist.

Instance Method Summary collapse

Constructor Details

#initialize(filepath) ⇒ NoTemplateFileError

Returns a new instance of NoTemplateFileError.



104
105
106
# File 'lib/rbnotes/error.rb', line 104

def initialize(filepath)
  super(ErrMsg::NO_TEMPLATE_FILE % filepath)
end