Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rss/rss.rb

Methods

Class/Module Index [+]

Quicksearch

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