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

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

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

public class RayException extends RuntimeException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy