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

io.soffa.foundation.errors.DatabaseException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.errors;

public class DatabaseException extends TechnicalException {

    private static final long serialVersionUID = -9219661125423412050L;

    public DatabaseException(Throwable cause, String messsage, Object... args) {
        super(cause, messsage, args);
    }

    public DatabaseException(String messsage, Object... args) {
        super(messsage, args);
    }

    public DatabaseException(String messsage, Exception e) {
        super(messsage, e);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy