We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce7a099 commit d969721Copy full SHA for d969721
APIJSON-Java-Server/APIJSONLibrary/src/main/java/zuo/biao/apijson/server/AbstractParser.java
@@ -470,7 +470,7 @@ public JSONObject parseCorrectRequest() throws Exception {
470
471
String tag = requestObject.getString(JSONRequest.KEY_TAG);
472
if (StringUtil.isNotEmpty(tag, true) == false) {
473
- throw new IllegalArgumentException("请设置tag!一般是Table名");
+ throw new IllegalArgumentException("请在最外层设置tag!一般是Table名,例如 \"tag\": \"User\" ");
474
}
475
int version = requestObject.getIntValue(JSONRequest.KEY_VERSION);
476
0 commit comments