class Rbnotes::NoTemplateFileError

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

Public Class Methods

new(filepath) click to toggle source
Calls superclass method
# File lib/rbnotes/error.rb, line 104
def initialize(filepath)
  super(ErrMsg::NO_TEMPLATE_FILE % filepath)
end