method
new

new(paths, path, template_format = nil)
public
Hide source
# File actionpack/lib/action_view/base.rb, line 6 def initialize(paths, path, template_format = nil) full_template_path = path.include?('.') ? path : "#{path}.erb" display_paths = paths.join(':') template_type = (path =~ /layouts/i) ? 'layout' : 'template' super("Missing #{template_type} #{full_template_path} in view path #{display_paths}") end