tech.ydb.yoj.databind.schema.CustomConverterException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-databind Show documentation
Show all versions of yoj-databind Show documentation
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