NebulaGraph Java Client  release-3.8
ExecuteFailedException.java
1 /* Copyright (c) 2020 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.meta.exception;
7 
8 public class ExecuteFailedException extends Exception {
9  public ExecuteFailedException(String message) {
10  super(String.format("Execute failed: %s", message));
11  }
12 }