UNPKG

@jonaskello-forks/amqp-client

Version:

AMQP 0-9-1 client, both for browsers (WebSocket) and node (TCP Socket)

12 lines 348 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AMQPError = void 0; class AMQPError extends Error { constructor(message, connection) { super(message); this.name = "AMQPError"; this.connection = connection; } } exports.AMQPError = AMQPError; //# sourceMappingURL=amqp-error.js.map