Skip to content

Commit

Permalink
add ClientServerIncompatibleException
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicole00 committed Oct 21, 2021
1 parent 54ba55f commit fbc3d4e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import com.vesoft.nebula.client.graph.data.HostAddress;
import com.vesoft.nebula.client.graph.data.ResultSet;
import com.vesoft.nebula.client.graph.exception.AuthFailedException;
import com.vesoft.nebula.client.graph.exception.ClientServerIncompatibleException;
import com.vesoft.nebula.client.graph.exception.IOErrorException;
import com.vesoft.nebula.client.graph.exception.NotValidConnectionException;
import com.vesoft.nebula.client.graph.net.NebulaPool;
Expand Down Expand Up @@ -54,7 +55,7 @@ public static void mockSchema() {
assert (false);
}
} catch (UnknownHostException | NotValidConnectionException
| IOErrorException | AuthFailedException e) {
| IOErrorException | AuthFailedException | ClientServerIncompatibleException e) {
LOGGER.error("create space error, ", e);
assert (false);
} finally {
Expand Down

0 comments on commit fbc3d4e

Please sign in to comment.