class RSS::MissingAttributeError
Certain attributes are required on specific tags in an RSS feed. If a feed is missing one of these attributes, a MissingAttributeError is raised.
Attributes
Public Class Methods
Source
# File bundled-src/rss-0.3.2/lib/rss/rss.rb, line 120 def initialize(tag, attribute) @tag, @attribute = tag, attribute super("attribute <#{attribute}> is missing in tag <#{tag}>") end
Calls superclass method
Exception::new