class Radius::MissingEndTagError
Occurs when Parser
cannot find an end tag for a given tag in a template or when tags are miss-matched in a template.
Public Class Methods
new(tag_name, stack)
click to toggle source
Create a new MissingEndTagError
object for tag_name
.
Calls superclass method
# File lib/radius/error.rb, line 18 def initialize(tag_name, stack) stack_message = " with stack #{stack.inspect}" if stack super("end tag not found for start tag `#{tag_name}'#{stack_message}") end