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

tech.ydb.yoj.databind.schema.CustomConverterException Maven / Gradle / Ivy

Go to download

Core data-binding logic used by YOJ (YDB ORM for Java) to convert between Java objects and database rows (or anything representable by a Java Map, really).

The newest version!
package tech.ydb.yoj.databind.schema;

import org.jetbrains.annotations.Nullable;
import tech.ydb.yoj.ExperimentalApi;

@ExperimentalApi(issue = "https://github.com/ydb-platform/yoj-project/issues/24")
public final class CustomConverterException extends BindingException {
    public CustomConverterException(@Nullable Throwable cause, String message) {
        super(cause, __ -> message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy