Exception: RSS::NotAvailableValueError
- Inherits:
-
InvalidRSSError
- Object
- StandardError
- Error
- InvalidRSSError
- RSS::NotAvailableValueError
- Defined in:
- lib/rss/rss.rb
Instance Attribute Summary collapse
-
#attribute ⇒ Object
readonly
Returns the value of attribute attribute.
-
#tag ⇒ Object
readonly
Returns the value of attribute tag.
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(tag, value, attribute = nil) ⇒ NotAvailableValueError
constructor
A new instance of NotAvailableValueError.
Constructor Details
#initialize(tag, value, attribute = nil) ⇒ NotAvailableValueError
Returns a new instance of NotAvailableValueError.
117 118 119 120 121 122 123 |
# File 'lib/rss/rss.rb', line 117 def initialize(tag, value, attribute=nil) @tag, @value, @attribute = tag, value, attribute = "value <#{value}> of " << "attribute <#{attribute}> of " if attribute << "tag <#{tag}> is not available." super() end |
Instance Attribute Details
#attribute ⇒ Object (readonly)
Returns the value of attribute attribute.
116 117 118 |
# File 'lib/rss/rss.rb', line 116 def attribute @attribute end |
#tag ⇒ Object (readonly)
Returns the value of attribute tag.
116 117 118 |
# File 'lib/rss/rss.rb', line 116 def tag @tag end |
#value ⇒ Object (readonly)
Returns the value of attribute value.
116 117 118 |
# File 'lib/rss/rss.rb', line 116 def value @value end |