class RSS::UnknownTagError

Raised when an unknown tag is found.

Attributes

tag[R]
uri[R]

Public Class Methods

new(tag, uri) click to toggle source
Calls superclass method Exception.new
# File lib/rss/rss.rb, line 111
def initialize(tag, uri)
  @tag, @uri = tag, uri
  super("tag <#{tag}> is unknown in namespace specified by uri <#{uri}>")
end