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

zipkin2.internal.ClosedComponentException Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
/*
 * Copyright The OpenZipkin Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package zipkin2.internal;

public final class ClosedComponentException extends IllegalStateException {
  static final long serialVersionUID = -4636520624634625689L;

  /** Convenience constructor that ensures the message is never null. */
  public ClosedComponentException() {
    this(null);
  }

  public ClosedComponentException(String message) {
    super(message != null ? message : "closed");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy