kafka-node
Version:
Client for Apache Kafka v0.9.x, v0.10.x and v0.11.x
16 lines (12 loc) • 590 B
JavaScript
var util = require('util');
var MessageSizeTooLarge = function (vars) {
Error.captureStackTrace(this, this);
if (typeof vars === 'object') {
this.message = `Found a message larger than the maximum fetch size of this consumer on topic ${vars.topic} partition ${vars.partition} at fetch offset ${vars.offset}. Increase the fetch size, or decrease the maximum message size the broker will allow.`;
} else {
this.message = vars;
}
};
util.inherits(MessageSizeTooLarge, Error);
MessageSizeTooLarge.prototype.name = 'MessageSizeTooLarge';
module.exports = MessageSizeTooLarge;