pl.touk.throwing.exception.WrappedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of throwing-function Show documentation
Show all versions of throwing-function Show documentation
Java 8+ functional interfaces with checked exceptions support
package pl.touk.throwing.exception;
public class WrappedException extends RuntimeException {
public WrappedException(Throwable cause) {
super(cause.getMessage(), cause);
}
}