com.github.alexcojocaru.mojo.elasticsearch.v2.configuration.InvalidCoordinatesException 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.configuration;
/**
*
* @author Alex Cojocaru
*
*/
@SuppressWarnings("serial")
public class InvalidCoordinatesException
extends RuntimeException
{
public InvalidCoordinatesException(String coordinates)
{
super("Could not create a dependency from " + coordinates);
}
}