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 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

[Validate]