com.smallaswater.easysql.exceptions.MySqlLoginException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyMySQL Show documentation
Show all versions of EasyMySQL Show documentation
EasyMySQL -- MySQL tool for Nukkit
package com.smallaswater.easysql.exceptions;
/**
* @author SmallasWater
*/
public class MySqlLoginException extends Exception {
public MySqlLoginException() {
this("数据库连接失败,请检查信息是否填写错误");
}
public MySqlLoginException(String message) {
super(message);
}
}