com.datastrato.gravitino.server.GravitinoServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server Show documentation
Show all versions of server Show documentation
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