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

In Files

  • rss/rss.rb

Methods

Class/Module Index [+]

Quicksearch

RSS::NotExpectedTagError

Raised when an unexpected tag is encountered.

Attributes

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

Public Class Methods

new(tag, uri, parent) click to toggle source
 
               # File rss/rss.rb, line 122
def initialize(tag, uri, parent)
  @tag, @uri, @parent = tag, uri, parent
  super("tag <{#{uri}}#{tag}> is not expected in tag <#{parent}>")
end