Sha256: 0d03c0b72871d35ac5be0e1387849245606b125e17de66d31680c01a25f03f9b
Contents?: true
Size: 419 Bytes
Versions: 29
Compression:
Stored size: 419 Bytes
Contents
'use strict'; class ParserError extends Error { constructor(message) { super(message); this.name = this.constructor.name; this.message = message || 'An error ocurred while parsing.'; if (typeof Error.captureStackTrace === 'function') { Error.captureStackTrace(this, this.constructor); } else { this.stack = (new Error(message)).stack; } } } module.exports = ParserError;
Version data entries
29 entries across 27 versions & 8 rubygems