Exception: Rbnotes::NoTemplateFileError
- Defined in:
- lib/rbnotes/error.rb
Overview
An error raised when the specified template files does not exist.
Instance Method Summary collapse
-
#initialize(filepath) ⇒ NoTemplateFileError
constructor
A new instance of NoTemplateFileError.
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 |