class Biblionet::Extractors::NoIdeaWhatThisIsError

Raised when something unexpected or in wrong format is parsed.

Attributes

biblionet_id[R]
the_unexpected[R]

Public Class Methods

new(biblionet_id, the_unexpected) click to toggle source
Calls superclass method
# File lib/bookshark/extractors/base.rb, line 178
def initialize(biblionet_id, the_unexpected)
  @biblionet_id = biblionet_id
  @the_unexpected = the_unexpected
  
  msg = "We have no idea what this: #{the_unexpected} is. At book #{biblionet_id}"
  super(msg)
end