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

dev.soffa.foundation.error.DatabaseException Maven / Gradle / Ivy

package dev.soffa.foundation.error;

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) {
        this(null, messsage, args);
    }

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

    public DatabaseException(Throwable cause) {
        this(cause, null);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy