class CsvParser::Error

Attributes

column[R]
line[R]

Public Class Methods

new(msg, line, column) click to toggle source
Calls superclass method
# File lib/csv_parser.rb, line 14
def initialize(msg, line, column)
  super(msg)
  @line = line
  @column = column
end