类 RSS::NotWellFormedError

属性

element[R]
line[R]

公共类方法

new(line=nil, element=nil) 点击切换源代码

element 中的 line 处创建一个新的 NotWellFormedError 错误。如果给出了块,则块的返回值将出现在错误消息中。

调用父类方法
# File rss-0.3.1/lib/rss/parser.rb, line 16
def initialize(line=nil, element=nil)
  message = "This is not well formed XML"
  if element or line
    message << "\nerror occurred"
    message << " in #{element}" if element
    message << " at about #{line} line" if line
  end
  message << "\n#{yield}" if block_given?
  super(message)
end