class DataImp::NoImporter

Attributes

porter_type[RW]

Public Class Methods

new(porter_type) click to toggle source
Calls superclass method
# File lib/data_imp/no_importer.rb, line 3
  def initialize(porter_type)
    @porter_type = porter_type
    super <<-MSG.strip_heredoc
      Unable to find Importer for #{porter_type.inspect}
      Please define: class #{porter_type.classify}Importer < DataImp::Porter
    MSG
  end