UNPKG

@gabliam/amqp

Version:
14 lines (13 loc) 497 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AmqpConfigIsMandatoryError = void 0; class AmqpConfigIsMandatoryError extends Error { constructor() { super(); this.name = 'AmqpConfigIsMandatoryError'; // Set the prototype explicitly. Object.setPrototypeOf(this, AmqpConfigIsMandatoryError.prototype); this.message = `AmqpConfig is mandatory`; } } exports.AmqpConfigIsMandatoryError = AmqpConfigIsMandatoryError;