@gabliam/amqp
Version:
amqp plugin for gabliam
14 lines (13 loc) • 497 B
JavaScript
;
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;