Fix IllegalStateException to use correct dependency io.ebean:ebean-elastic in error message

This commit is contained in:
rob bygrave
2020-05-11 20:29:58 +12:00
parent 41102aca35
commit a0e44aedf3
@@ -19,7 +19,7 @@ import java.util.function.Predicate;
public class NoneDocStore implements DocumentStore {
public static IllegalStateException implementationNotInClassPath() {
throw new IllegalStateException("DocStore implementation not included in the classPath. You need to add the maven dependency for avaje-ebeanorm-elastic");
throw new IllegalStateException("DocStore implementation not included in the classPath. You need to add the maven dependency for io.ebean:ebean-elastic");
}
@Override