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

tech.guyi.ipojo.module.h2.where.SqlRuntimeException Maven / Gradle / Ivy

The newest version!
package tech.guyi.ipojo.module.h2.where;

import java.sql.SQLException;

public class SqlRuntimeException extends RuntimeException {

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

    public SqlRuntimeException(SQLException e){
        this(e.getMessage());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy