NebulaGraph Java Client  release-3.8
NotValidConnectionException.java
1 /* Copyright (c) 2019 vesoft inc. All rights reserved.
2  *
3  * This source code is licensed under Apache 2.0 License.
4  */
5 
6 package com.vesoft.nebula.client.graph.exception;
7 
11 public class NotValidConnectionException extends Exception {
12  public NotValidConnectionException(String message) {
13  super(String.format("No extra connection: %s", message));
14  }
15 }
16