All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alexcojocaru.mojo.elasticsearch.v2.ElasticsearchSetupException Maven / Gradle / Ivy

Go to download

A Maven plugin to run a single node Elasticsearch cluster during the integration test phase of a build

There is a newer version: 6.28
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy