
com.tobedevoured.naether.deploy.DeployException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
A Java Dependency Resolver using Maven’s Aether.
package com.tobedevoured.naether.deploy;
import com.tobedevoured.naether.NaetherException;
public class DeployException extends NaetherException {
private static final long serialVersionUID = -9173565689543634165L;
public DeployException( String msg ) {
super(msg);
}
public DeployException( String msg, Throwable throwable ) {
super(msg, throwable );
}
public DeployException( Throwable throwable ) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy