All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaomi.infra.galaxy.talos.producer.ExcessivePendingMessageException Maven / Gradle / Ivy

There is a newer version: 2.6.1.4
Show newest version
/**
 * Copyright 2015, Xiaomi.
 * All rights reserved.
 * Author: [email protected]
 */

package com.xiaomi.infra.galaxy.talos.producer;

import com.xiaomi.infra.galaxy.talos.thrift.ErrorCode;
import com.xiaomi.infra.galaxy.talos.thrift.GalaxyTalosException;

public class ExcessivePendingMessageException extends GalaxyTalosException {
  public ExcessivePendingMessageException() {
    setErrorCode(ErrorCode.EXCESSIVE_PENDING_MESSAGE);
    setErrMsg("Excessive pending message");
  }

  public ExcessivePendingMessageException(String detailMsg) {
    this();
    setDetails(detailMsg);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy