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

io.ray.serve.exception.RayServeException Maven / Gradle / Ivy

There is a newer version: 2.39.0
Show newest version
package io.ray.serve.exception;

import io.ray.api.exception.RayException;

public class RayServeException extends RayException {

  private static final long serialVersionUID = 4673951342965950469L;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy