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

io.scalecube.cluster.utils.NetworkEmulatorException Maven / Gradle / Ivy

There is a newer version: 2.7.0.rc
Show newest version
package io.scalecube.cluster.utils;

/** Exception which is thrown by network emulator on message loss. */
public final class NetworkEmulatorException extends RuntimeException {

  public NetworkEmulatorException(String message) {
    super(message);
  }

  /**
   * No need for stack trace since those exceptions are not really an exceptions, but checked error
   * conditions.
   */
  @Override
  public synchronized Throwable fillInStackTrace() {
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy