class DataImp::NoParser

Attributes

parser_type[RW]

Public Class Methods

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