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

cn.schoolwow.quickdao.domain.exception.SQLRuntimeException Maven / Gradle / Ivy

There is a newer version: 5.3.1
Show newest version
package cn.schoolwow.quickdao.domain.exception;

/**
 * 包装SQL异常为运行时异常
 */
public class SQLRuntimeException extends RuntimeException {

    public SQLRuntimeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy