All files / csv2json/libs/core CSVError.js

0% Statements 0/17
0% Branches 0/2
0% Functions 0/5
0% Lines 0/17

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28                                                       
var util = require("util");
module.exports = CSVError;
function CSVError(err, index, extra) {
  Error.call(this, "");
  this.err = err;
  this.line = index;
  this.extra = extra;
  this.message = "Error: " + err + ". JSON Line number: " + index + (extra ? " near: " + extra : "");
  this.name = "CSV Error";
}
util.inherits(CSVError, Error);
 
CSVError.prototype.toString = function() {
  return JSON.stringify([this.err, this.line, this.extra]);
};
 
CSVError.column_mismatched = function(index, extra) {
  return new CSVError("column_mismatched", index, extra);
};
 
CSVError.unclosed_quote = function(index, extra) {
  return new CSVError("unclosed_quote", index, extra);
};
 
CSVError.fromArray = function(arr) {
  return new CSVError(arr[0], arr[1], arr[2]);
};