org.rajivprab.cava.exception.ExecutionExceptionc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cava Show documentation
Show all versions of cava Show documentation
A library that enables users to write minimal, clean and simple Java
package org.rajivprab.cava.exception;
import java.util.concurrent.ExecutionException;
public class ExecutionExceptionc extends CheckedExceptionWrapper {
public ExecutionExceptionc(ExecutionException e) {
super(e);
}
}