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

com.xiaomi.infra.galaxy.talos.producer.ProducerNotActiveException 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.GalaxyTalosException;

public class ProducerNotActiveException extends GalaxyTalosException {
  public ProducerNotActiveException() {
    setErrMsg("producer not active");
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy