NebulaGraph Java Client  release-3.8
BindSpaceFailedException.java
1 /* Copyright (c) 2022 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 BindSpaceFailedException extends Exception {
9  private static final long serialVersionUID = -8678623814979666625L;
10 
11  public BindSpaceFailedException(String message) {
12  super(String.format("use space failed: %s", message));
13  }
14 }