UNPKG

@gabliam/amqp

Version:
15 lines (14 loc) 514 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AmqpReplytoIsMissingError = void 0; /* istanbul ignore next */ class AmqpReplytoIsMissingError extends Error { constructor() { super(); this.name = 'AmqpReplytoIsMissingError'; // Set the prototype explicitly. Object.setPrototypeOf(this, AmqpReplytoIsMissingError.prototype); this.message = `ReplyTo is missing.`; } } exports.AmqpReplytoIsMissingError = AmqpReplytoIsMissingError;