Class RSS::NotExpectedTagError
In: lib/rss/rss.rb
Parent: InvalidRSSError

Methods

new  

Attributes

parent  [R] 
tag  [R] 
uri  [R] 

Public Class methods

[Source]

    # File lib/rss/rss.rb, line 91
91:     def initialize(tag, uri, parent)
92:       @tag, @uri, @parent = tag, uri, parent
93:       super("tag <{#{uri}}#{tag}> is not expected in tag <#{parent}>")
94:     end

[Validate]