Method: ECCSV::Error#initialize

Defined in:
lib/eccsv/errors.rb

#initialize(msg = nil, line = nil, col = nil) ⇒ Error

Returns a new instance of Error.



5
6
7
8
9
# File 'lib/eccsv/errors.rb', line 5

def initialize(msg = nil, line = nil, col = nil)
  super(msg)
  @line = line
  @col = col
end