class Utopia::Content::UnbalancedTagError

This error is raised if a tag doesn't match up when parsing.

Attributes

tag[R]

Public Class Methods

new(tag) click to toggle source
Calls superclass method
# File lib/utopia/content/document.rb, line 31
def initialize(tag)
        @tag = tag
        
        super "Unbalanced tag #{tag.name}"
end