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

org.echocat.jsu.support.UncheckedSqlException Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
package org.echocat.jsu.support;

import java.util.Objects;

public class UncheckedSqlException extends RuntimeException {

    public UncheckedSqlException(String message, Throwable cause) {
        super(message, Objects.requireNonNull(cause));
    }

    public UncheckedSqlException(Throwable cause) {
        super(Objects.requireNonNull(cause));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy