NebulaGraph Java Client  release-3.8
InvalidSessionException.java
1 /* Copyright (c) 2021 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 
8 public class InvalidSessionException extends RuntimeException {
9  public InvalidSessionException() {
10  super("The session was released, could not use again.");
11  }
12 }