Exception: RSS::TooMuchTagError
- Inherits:
-
InvalidRSSError
- Object
- StandardError
- Error
- InvalidRSSError
- RSS::TooMuchTagError
- Defined in:
- lib/rss/rss.rb
Instance Attribute Summary (collapse)
-
- (Object) parent
readonly
Returns the value of attribute parent.
-
- (Object) tag
readonly
Returns the value of attribute tag.
Instance Method Summary (collapse)
-
- (TooMuchTagError) initialize(tag, parent)
constructor
A new instance of TooMuchTagError.
Constructor Details
- (TooMuchTagError) initialize(tag, parent)
A new instance of TooMuchTagError
83 84 85 86 |
# File 'lib/rss/rss.rb', line 83 def initialize(tag, parent) @tag, @parent = tag, parent super("tag <#{tag}> is too much in tag <#{parent}>") end |