new(template) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/template/error.rb, line 162 def initialize(template) super($!.message) @cause = $! if @cause.is_a?(SyntaxError) @cause = ActiveSupport::SyntaxErrorProxy.new(@cause) end @template, @sub_templates = template, nil end
Register or log in to add new notes.