class RSS::TooMuchTagError
Raised if there are more occurrences of the tag than expected.
Attributes
parent[R]
tag[R]
Public Class Methods
new(tag, parent)
click to toggle source
Calls superclass method
Exception.new
# File lib/rss/rss.rb, line 89 def initialize(tag, parent) @tag, @parent = tag, parent super("tag <#{tag}> is too much in tag <#{parent}>") end