@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
12 lines • 352 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotFoundError = void 0;
class NotFoundError extends Error {
constructor(message) {
super(message);
this.statusCode = 404;
this.name = 'NotFoundError';
}
}
exports.NotFoundError = NotFoundError;
//# sourceMappingURL=NotFoundError.js.map