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

com.datastrato.gravitino.server.GravitinoServerException Maven / Gradle / Ivy

Go to download

Gravitino is a high-performance, geo-distributed and federated metadata lake.

The newest version!
/*
 * Copyright 2023 Datastrato Pvt Ltd.
 * This software is licensed under the Apache License version 2.
 */
package com.datastrato.gravitino.server;

public class GravitinoServerException extends RuntimeException {

  public GravitinoServerException(String exception) {
    super(exception);
  }

  public GravitinoServerException(String exception, Throwable cause) {
    super(exception, cause);
  }

  public GravitinoServerException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy