com.clickhouse.client.api.insert.SerializerNotFoundException 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
The newest version!
package com.clickhouse.client.api.insert;
import com.clickhouse.client.api.ClientException;
public class SerializerNotFoundException extends ClientException {
public SerializerNotFoundException(Class> pojoClass) {
super("Serializer not found for the class '" + pojoClass.getName() + "'");
}
}