class Nlg::Extractors::EmptyPageError
Raised when a page is considered empty.
Attributes
url[R]
Public Class Methods
new(url)
click to toggle source
Calls superclass method
# File lib/bookshark/extractors/nlg/base.rb, line 87 def initialize(url) @url = url msg = "Page: #{url} is not valid xml so it is considered EMPTY." super(msg) end