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

org.cloudgraph.rocksdb.expr.UnsupportedExpressionOperator Maven / Gradle / Ivy

Go to download

CloudGraph(tm) is a suite of Service Data Object (SDO) 2.1 services designed for relational and big-table style "cloud" databases, such as HBase and others.

The newest version!
package org.cloudgraph.rocksdb.expr;

import org.cloudgraph.store.service.GraphServiceException;

public class UnsupportedExpressionOperator extends GraphServiceException {

  private static final long serialVersionUID = 1L;

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

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

  public UnsupportedExpressionOperator(Throwable t) {
    super(t);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy