@typeheim/orm-on-fire
Version:
Firestore ORM
11 lines • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidOptionsException = void 0;
class InvalidOptionsException extends Error {
constructor(message) { super(message); }
static withMessage(message) {
return new InvalidOptionsException(message);
}
}
exports.InvalidOptionsException = InvalidOptionsException;
//# sourceMappingURL=InvalidOptionsException.js.map