io.github.kiryu1223.drink.exception.SqlFuncExtNotFoundException Maven / Gradle / Ivy
package io.github.kiryu1223.drink.exception;
import io.github.kiryu1223.drink.ext.DbType;
public class SqlFuncExtNotFoundException extends RuntimeException
{
public SqlFuncExtNotFoundException(DbType type)
{
super("No corresponding SqlExtensionExpression annotation found for database type: " + type);
}
}