class Snp::TemplateNotFound

Snp::TemplateNotFound

This exception is raised in case the template file passed is not found in any directory in snp path.

Public Class Methods

new(template_name, path) click to toggle source
Calls superclass method
# File lib/snp/template.rb, line 9
def initialize(template_name, path)
  super("Template #{template_name} was not found in #{path.inspect}")
end