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

com.fastchar.exception.FastSqlException Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
package com.fastchar.exception;

public class FastSqlException extends RuntimeException {
    private static final long serialVersionUID = -7519948369474426450L;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy