iso-weeks-year
Version:
Library to view week numbers for a year
14 lines • 456 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalError = void 0;
class InternalError extends Error {
constructor(message, code = 5000) {
super(message);
this.message = message;
this.code = code;
this.name = this.constructor.name;
Error.captureStackTrace(this, this.constructor);
}
}
exports.InternalError = InternalError;
//# sourceMappingURL=internal-error.js.map