com.github.alexcojocaru.mojo.elasticsearch.v2.ElasticsearchSetupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-maven-plugin Show documentation
Show all versions of elasticsearch-maven-plugin Show documentation
A Maven plugin to run a single node Elasticsearch cluster during the integration test phase of a build
package com.github.alexcojocaru.mojo.elasticsearch.v2;
/**
* @author Alex Cojocaru
*/
public class ElasticsearchSetupException
extends RuntimeException
{
private static final long serialVersionUID = 7187554107621129031L;
/**
* @param message The exception message
* @param cause The cause
*/
public ElasticsearchSetupException(String message, Throwable cause)
{
super(message, cause);
}
/**
* @param message The message
*/
public ElasticsearchSetupException(String message)
{
super(message);
}
/**
* @param cause The cause
*/
public ElasticsearchSetupException(Throwable cause)
{
super(cause);
}
}