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

tech.ydb.jdbc.exception.YdbNonRetryableException 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 YdbNonRetryableException extends YdbExecutionStatusException {
    private static final long serialVersionUID = 1170815831963616837L;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy