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

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

There is a newer version: 1.0.5
Show newest version
package io.github.kiryu1223.drink.exception;

import io.github.kiryu1223.drink.ext.DbType;

public class DrinkLimitNotFoundOrderByException extends DrinkException
{
    public DrinkLimitNotFoundOrderByException(DbType dbType)
    {
        super(dbType.name() + "数据库下进行的limit操作需要声明order by的字段,或者为表类指定一个主键");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy