tech.ydb.yoj.repository.db.exception.DropTableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoj-repository Show documentation
Show all versions of yoj-repository Show documentation
Core YOJ (YDB ORM for Java) abstractions and APIs for domain entities, repositories, transactions etc.
The newest version!
package tech.ydb.yoj.repository.db.exception;
public class DropTableException extends RepositoryException {
public DropTableException(String msg) {
super(msg);
}
}