class ScrapCbf::RowSizeError

Raised when the scraping data from a table have the size of the Table's header different than the Table's rows.

Public Class Methods

new(row_length, header_length) click to toggle source
Calls superclass method
# File lib/scrap_cbf/errors.rb, line 37
def initialize(row_length, header_length)
  message = "row length: #{row_length} doesn't match with " \
  "header length: #{header_length}"
  super(message)
end