source: trip-planner-front/node_modules/postcss-values-parser/lib/errors/ParserError.js

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 419 bytes
Line 
1'use strict';
2
3class ParserError extends Error {
4 constructor(message) {
5 super(message);
6
7 this.name = this.constructor.name;
8 this.message = message || 'An error ocurred while parsing.';
9
10 if (typeof Error.captureStackTrace === 'function') {
11 Error.captureStackTrace(this, this.constructor);
12 }
13 else {
14 this.stack = (new Error(message)).stack;
15 }
16 }
17}
18
19module.exports = ParserError;
Note: See TracBrowser for help on using the repository browser.