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

cq.database.exception.DBException Maven / Gradle / Ivy

The newest version!
package cq.database.exception;

@SuppressWarnings("serial")
public class DBException extends RuntimeException {
    public DBException(String msg) {
        super(msg);
    }

    public DBException(Throwable t) {
        super(t);
    }

    public DBException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy