diff --git a/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java b/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java index 05a6e4e6..24ad2fd1 100644 --- a/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java +++ b/mybatis-flex-core/src/main/java/com/mybatisflex/core/row/DbChain.java @@ -54,11 +54,11 @@ public class DbChain extends QueryWrapperAdapter implements PropertySet } public static DbChain create() { - throw new UnsupportedOperationException("please use DbChain#table(...)"); + throw new UnsupportedOperationException("Please use DbChain#table(...) to replace DbChain.create()"); } public static DbChain create(Object entity) { - throw new UnsupportedOperationException("please use DbChain#table(...)"); + throw new UnsupportedOperationException("Please use DbChain#table(...) to replace DbChain.create(entity)"); } public static DbChain table(String tableName) {