firewalk
Version:
A collection traversal library for Firestore
14 lines • 534 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImplementationError = void 0;
/**
* An error thrown when a piece of code is found to be incorrectly implemented. If the maintainers of the
* library have done everything right, this error should never be encountered.
*/
class ImplementationError extends Error {
constructor(message) {
super(`Implementation Error: ${message}`);
}
}
exports.ImplementationError = ImplementationError;
//# sourceMappingURL=ImplementationError.js.map