class RSS::NotAvailableValueError
属性采用键值对形式,如果某个属性没有提供值,则会引发 NotAvailableValueError
异常。
属性
attribute[R]
tag[R]
value[R]
公共类方法
new(tag, value, attribute=nil) 点击切换源码
调用父类方法
# File rss-0.3.1/lib/rss/rss.rb, line 151 def initialize(tag, value, attribute=nil) @tag, @value, @attribute = tag, value, attribute message = "value <#{value}> of " message << "attribute <#{attribute}> of " if attribute message << "tag <#{tag}> is not available." super(message) end