com.clickhouse.client.api.ClientMisconfigurationException 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;
/**
* Represents errors caused by a client misconfiguration.
*/
public class ClientMisconfigurationException extends ClientException {
public ClientMisconfigurationException(String message) {
super(message);
}
public ClientMisconfigurationException(String message, Throwable cause) {
super(message, cause);
}
}