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

io.github.kiryu1223.drink.exception.SqlFuncExtNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy