class RSS::UnknownTagError
RSS does not allow for free-form tag names, so if an RSS feed contains a tag that we donβt know about, an UnknownTagError is raised.
Attributes
Public Class Methods
Source
# File bundled-src/rss-0.3.2/lib/rss/rss.rb, line 130 def initialize(tag, uri) @tag, @uri = tag, uri super("tag <#{tag}> is unknown in namespace specified by uri <#{uri}>") end
Calls superclass method
Exception::new