Class RSS::TooMuchTagError
In: rss/rss.rb
Parent: InvalidRSSError

Methods

new  

Attributes

parent  [R] 
tag  [R] 

Public Class methods

[Source]

# File rss/rss.rb, line 89
    def initialize(tag, parent)
      @tag, @parent = tag, parent
      super("tag <#{tag}> is too much in tag <#{parent}>")
    end

[Validate]