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

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

package org.echocat.jsu.support;

import javax.annotation.Nonnull;
import java.sql.SQLException;

import static java.util.Objects.requireNonNull;

public class UncheckedSqlException extends RuntimeException {

    public UncheckedSqlException(@Nonnull String message, @Nonnull SQLException cause) {
        super(requireNonNull(message), requireNonNull(cause));
    }

    public UncheckedSqlException(@Nonnull SQLException cause) {
        super(requireNonNull(cause));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy