com.vesoft.nebula.driver.graph.exception.ClientServerIncompatibleException Maven / Gradle / Ivy
The newest version!
package com.vesoft.nebula.driver.graph.exception;
/**
*
*/
public class ClientServerIncompatibleException extends Exception {
public ClientServerIncompatibleException(String message) {
super("Current client is not compatible with the remote server, please check the "
+ "version: " + message);
}
}