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

Methods

new  

Attributes

tag  [R] 
value  [R] 

Public Class methods

[Source]

# File rss/rss.rb, line 121
    def initialize(tag, value)
      @tag, @value = tag, value
      super("value <#{value}> of tag <#{tag}> is not available.")
    end

[Validate]