pegjs/lib/grammar-error.js
2016-09-20 15:07:39 +02:00

17 lines
360 B
JavaScript

"use strict";
// Thrown when the grammar contains an error.
class GrammarError {
constructor(message, location) {
this.name = "GrammarError";
this.message = message;
this.location = location;
if (typeof Error.captureStackTrace === "function") {
Error.captureStackTrace(this, GrammarError);
}
}
}
module.exports = GrammarError;