au.net.causal.maven.plugins.boxdb.vagrant.VagrantException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boxdb-maven-plugin Show documentation
Show all versions of boxdb-maven-plugin Show documentation
Maven plugin to start databases using Docker and VMs
package au.net.causal.maven.plugins.boxdb.vagrant;
public class VagrantException extends Exception
{
public VagrantException()
{
}
public VagrantException(String message)
{
super(message);
}
public VagrantException(String message, Throwable cause)
{
super(message, cause);
}
public VagrantException(Throwable cause)
{
super(cause);
}
}