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

com.github.datalking.jdbc.dao.DataAccessException Maven / Gradle / Ivy

package com.github.datalking.jdbc.dao;

/**
 * @author yaoo on 5/26/18
 */
public class DataAccessException extends RuntimeException {

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

    public DataAccessException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy