Class RSS::NotAvailableValueError
In: lib/rss/rss.rb
Parent: InvalidRSSError

Methods

new  

Attributes

attribute  [R] 
tag  [R] 
value  [R] 

Public Class methods

[Source]

     # File lib/rss/rss.rb, line 116
116:     def initialize(tag, value, attribute=nil)
117:       @tag, @value, @attribute = tag, value, attribute
118:       message = "value <#{value}> of "
119:       message << "attribute <#{attribute}> of " if attribute
120:       message << "tag <#{tag}> is not available."
121:       super(message)
122:     end

[Validate]