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

com.smallaswater.easysql.exceptions.MySqlLoginException Maven / Gradle / Ivy

There is a newer version: 3.0.7
Show newest version
package com.smallaswater.easysql.exceptions;

/**
 * @author SmallasWater
 */
public class MySqlLoginException extends Exception {

    public MySqlLoginException() {
        this("数据库连接失败,请检查信息是否填写错误");
    }

    public MySqlLoginException(String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy