All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.jdbc.exception.YdbRetryableException Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package tech.ydb.jdbc.exception;

import tech.ydb.core.StatusCode;

public class YdbRetryableException extends YdbExecutionStatusException {
    private static final long serialVersionUID = 688604408491567864L;

    public YdbRetryableException(String message, StatusCode statusCode) {
        super(message, statusCode);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy