class RSS::MissingTagError
Since RSS is based on XML, it must have opening and closing tags that match. If they donβt, a MissingTagError will be raised.
Attributes
Public Class Methods
Source
# File bundled-src/rss-0.3.2/lib/rss/rss.rb, line 99 def initialize(tag, parent) @tag, @parent = tag, parent super("tag <#{tag}> is missing in tag <#{parent}>") end
Calls superclass method
Exception::new