tech.ydb.topic.write.QueueOverflowException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-sdk-topic Show documentation
Show all versions of ydb-sdk-topic Show documentation
Topic client implementation
package tech.ydb.topic.write;
/**
* @author Nikolay Perfilov
*/
public class QueueOverflowException extends Exception {
private static final long serialVersionUID = 2807265315663088217L;
public QueueOverflowException(String errorMessage) {
super(errorMessage);
}
}