| Class | RSS::NotAvailableValueError |
| In: |
lib/rss/rss.rb
|
| Parent: | InvalidRSSError |
| attribute | [R] | |
| tag | [R] | |
| value | [R] |
# File lib/rss/rss.rb, line 101
101: def initialize(tag, value, attribute=nil)
102: @tag, @value, @attribute = tag, value, attribute
103: message = "value <#{value}> of "
104: message << "attribute <#{attribute}> of " if attribute
105: message << "tag <#{tag}> is not available."
106: super(message)
107: end