acebase-client
Version:
Client to connect to an AceBase realtime database server
13 lines • 641 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AceBaseRequestError = exports.CachedValueUnavailableError = void 0;
class CachedValueUnavailableError extends Error {
constructor(path, message) {
super(message || `Value for path "/${path}" is not available in cache`);
this.path = path;
}
}
exports.CachedValueUnavailableError = CachedValueUnavailableError;
var error_1 = require("./request/error");
Object.defineProperty(exports, "AceBaseRequestError", { enumerable: true, get: function () { return error_1.AceBaseRequestError; } });
//# sourceMappingURL=errors.js.map