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

io.ray.api.exception.RayWorkerException Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package io.ray.api.exception;

/** Indicates that the worker died unexpectedly while executing a task. */
public class RayWorkerException extends RayException {

  public RayWorkerException() {
    super("The worker died unexpectedly while executing this task.");
  }

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

  public RayWorkerException(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy