Exception: RSS::UnknownTagError
- Inherits:
-
InvalidRSSError
- Object
- StandardError
- Error
- InvalidRSSError
- RSS::UnknownTagError
- Defined in:
- lib/rss/rss.rb
Instance Attribute Summary (collapse)
-
- (Object) tag
readonly
Returns the value of attribute tag.
-
- (Object) uri
readonly
Returns the value of attribute uri.
Instance Method Summary (collapse)
-
- (UnknownTagError) initialize(tag, uri)
constructor
A new instance of UnknownTagError.
Constructor Details
- (UnknownTagError) initialize(tag, uri)
A new instance of UnknownTagError
99 100 101 102 |
# File 'lib/rss/rss.rb', line 99 def initialize(tag, uri) @tag, @uri = tag, uri super("tag <#{tag}> is unknown in namespace specified by uri <#{uri}>") end |