ern-api-gen
Version:
Electrode Native API generator
18 lines • 624 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ParserException extends Error {
/**
* Constructs a new exception with the specified detail message. The
* cause is not initialized, and may subsequently be initialized by
* a call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
constructor(message) {
super(message);
this.message = message;
}
}
exports.default = ParserException;
//# sourceMappingURL=ParserException.js.map