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 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));
}
}