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

com.wizarius.orm.database.DBException Maven / Gradle / Ivy

There is a newer version: 0.0.27.6
Show newest version
package com.wizarius.orm.database;

/**
 * @author Vladyslav Shyshkin on 21.01.17.
 */
public class DBException extends Exception {
    public DBException(Throwable cause) {
        super(cause);
    }

    public DBException(String message, Throwable cause) {
        super(message + cause.getMessage(), cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy