class UnbalancedTagError
This error is raised if a tag doesn't match up when parsing.
Definitions
def initialize(tag)
Initialize an error for a mismatched rendering tag.
Signature
-
parameter
tagObject The tag.
Implementation
def initialize(tag)
@tag = tag
super "Unbalanced tag #{tag.name}"
end