com.clickhouse.client.api.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-v2 Show documentation
Show all versions of client-v2 Show documentation
New client api for ClickHouse
package com.clickhouse.client.api;
public class ServerException extends RuntimeException {
public static final int CODE_UNKNOWN = 0;
public static final int TABLE_NOT_FOUND = 60;
private final int code;
public ServerException(int code, String message) {
super(message);
this.code = code;
}
public int getCode() {
return code;
}
}