![JAR search and dependency download from the Maven repository](/logo.png)
org.echocat.jsu.support.UncheckedSqlException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-stream-utils Show documentation
Show all versions of java-stream-utils Show documentation
Utilities to handle Java Streams.
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 - 2025 Weber Informatics LLC | Privacy Policy