redis-smq
Version:
A high-performance, reliable, and scalable message queue for Node.js.
14 lines • 552 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NamespaceMismatchError = void 0;
const redis_smq_common_1 = require("redis-smq-common");
class NamespaceMismatchError extends redis_smq_common_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.Namespace.Mismatch',
defaultMessage: `The provided namespace does not match the resource's namespace.`,
};
}
}
exports.NamespaceMismatchError = NamespaceMismatchError;
//# sourceMappingURL=namespace-mismatch.error.js.map