ps2census
Version:
Client to connect to the PS2 Event Stream websocket.
14 lines • 555 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MaxRetryException = void 0;
class MaxRetryException extends Error {
constructor(collection, conditions, attempts) {
super(`Unable to retrieve data from "${collection}": ${JSON.stringify(conditions)}`);
this.collection = collection;
this.conditions = conditions;
this.attempts = attempts;
this.name = MaxRetryException.name;
}
}
exports.MaxRetryException = MaxRetryException;
//# sourceMappingURL=max-retry.exception.js.map