redis-smq
Version:
A simple high-performance Redis message queue for Node.js.
11 lines • 497 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.MessageNotFoundError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class MessageNotFoundError extends redis_smq_common_1.errors.RedisSMQError {
constructor() {
super(`Message not found. Either message parameters are invalid or the message has been already deleted.`);
}
}
exports.MessageNotFoundError = MessageNotFoundError;
//# sourceMappingURL=message-not-found.error.js.map
;