com.tobedevoured.naether.maven.ProjectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naether Show documentation
Show all versions of naether Show documentation
A Java Dependency Resolver using Maven’s Aether.
The newest version!
package com.tobedevoured.naether.maven;
import com.tobedevoured.naether.NaetherException;
public class ProjectException extends NaetherException {
private static final long serialVersionUID = -483028771930335840L;
public ProjectException( String msg ) {
super(msg);
}
public ProjectException( String msg, Throwable throwable ) {
super(msg, throwable );
}
public ProjectException( Throwable throwable ) {
super(throwable);
}
}