
pl.allegro.tech.embeddedelasticsearch.EmbeddedElasticsearchStartupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-elasticsearch Show documentation
Show all versions of embedded-elasticsearch Show documentation
Tool that ease up creation of integration tests with Elasticsearch
package pl.allegro.tech.embeddedelasticsearch;
public class EmbeddedElasticsearchStartupException extends RuntimeException {
public EmbeddedElasticsearchStartupException(String message) {
super(message);
}
public EmbeddedElasticsearchStartupException(Throwable cause) {
super(cause);
}
public EmbeddedElasticsearchStartupException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy