You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
501 B
18 lines
501 B
var util = require('util');
|
|
|
|
/**
|
|
* Failed to rebalance the consumer
|
|
*
|
|
* @param {String} message A message describing the error during rebalancing of the consumer
|
|
*
|
|
* @constructor
|
|
*/
|
|
var FailedToRebalanceConsumerError = function (message) {
|
|
Error.captureStackTrace(this, this);
|
|
this.message = message;
|
|
};
|
|
|
|
util.inherits(FailedToRebalanceConsumerError, Error);
|
|
FailedToRebalanceConsumerError.prototype.name = 'FailedToRebalanceConsumerError';
|
|
|
|
module.exports = FailedToRebalanceConsumerError;
|
|
|