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 106
106:     def initialize(tag, uri, parent)
107:       @tag, @uri, @parent = tag, uri, parent
108:       super("tag <{#{uri}}#{tag}> is not expected in tag <#{parent}>")
109:     end

[Validate]