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

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

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

public class RayTaskException extends RayException {

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

  public RayTaskException(int pid, String ipAddress, String message, Throwable cause) {
    super(String.format("(pid=%d, ip=%s) %s", pid, ipAddress, message), cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy