dev.jbang.dependencies.DependencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbang-cli Show documentation
Show all versions of jbang-cli Show documentation
JBang Command Line Interface
package dev.jbang.dependencies;
@SuppressWarnings("serial")
public class DependencyException extends RuntimeException {
public DependencyException(Exception e) {
super(e);
}
}