From a0e44aedf3cf972e7ed0c7a8b699f1907bc2f91f Mon Sep 17 00:00:00 2001 From: rob bygrave Date: Mon, 11 May 2020 20:29:58 +1200 Subject: [PATCH] Fix IllegalStateException to use correct dependency io.ebean:ebean-elastic in error message --- src/main/java/io/ebeanservice/docstore/none/NoneDocStore.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/ebeanservice/docstore/none/NoneDocStore.java b/src/main/java/io/ebeanservice/docstore/none/NoneDocStore.java index 8b44d7e9d..8331f6ccd 100644 --- a/src/main/java/io/ebeanservice/docstore/none/NoneDocStore.java +++ b/src/main/java/io/ebeanservice/docstore/none/NoneDocStore.java @@ -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