function MaxLengthExceededError(maxLength) {
  Error.call(this);
  Error.captureStackTrace(this, this.constructor);
  this.name = this.constructor.name;
  this.message = 'Maximum length exceeded';