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

net.dongliu.dbutils.exception.ParameterNotFoundException Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package net.dongliu.dbutils.exception;

/**
 * Thrown when parameter not found
 * @author Liu Dong
 */
public class ParameterNotFoundException extends UncheckedSQLException {
    private static final long serialVersionUID = -8413383946018518722L;

    public ParameterNotFoundException(String name) {
        super("Parameter with name " + name + " not found");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy