Exception: Radius::MissingEndTagError

Inherits:
ParseError
  • Object
show all
Defined in:
lib/radius/errors.rb

Overview

Occurs when Parser cannot find an end tag for a given tag in a template or when tags are miss-matched in a template.

Instance Method Summary collapse

Constructor Details

#initialize(tag_name) ⇒ MissingEndTagError

Create a new MissingEndTagError object for tag_name.



11
12
13
# File 'lib/radius/errors.rb', line 11

def initialize(tag_name)
  super("end tag not found for start tag `#{tag_name}'")
end