au.net.causal.maven.plugins.boxdb.db.BoxDatabaseException 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.db;
public class BoxDatabaseException extends Exception
{
public BoxDatabaseException()
{
}
public BoxDatabaseException(Throwable cause)
{
super(cause);
}
public BoxDatabaseException(String message)
{
super(message);
}
public BoxDatabaseException(String message, Throwable cause)
{
super(message, cause);
}
}