class RSS::MissingAttributeError

RSS 订阅源中的特定标签上需要某些属性。如果订阅源缺少这些属性之一,则会引发 MissingAttributeError 错误。

属性

attribute[R]
tag[R]

公共类方法

new(tag, attribute) 点击以切换源代码
调用父类方法
# File rss-0.3.1/lib/rss/rss.rb, line 120
def initialize(tag, attribute)
  @tag, @attribute = tag, attribute
  super("attribute <#{attribute}> is missing in tag <#{tag}>")
end