gorsejs
Version:
TypeScript SDK for Gorse recommender system.
12 lines • 350 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GorseException = void 0;
class GorseException extends Error {
constructor(code, message) {
super(message);
this.name = "GorseException";
this.code = code;
}
}
exports.GorseException = GorseException;
//# sourceMappingURL=error.js.map