File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
APIJSON-Java-Server/APIJSONLibrary/src/main/java/zuo/biao/apijson/server Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -458,7 +458,7 @@ public JSONObject parseCorrectRequest() throws Exception {
458458 error = e .getMessage ();
459459 }
460460 if (object == null ) {//empty表示随意操作 || object.isEmpty()) {
461- throw new UnsupportedOperationException ("非开放请求必须是服务端允许的操作! \n " + error );
461+ throw new UnsupportedOperationException ("非开放请求必须是Request表中校验规则允许的操作! \n " + error );
462462 }
463463
464464 JSONObject target = null ;
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ public String getColumnString() throws NotExistException {
361361 alias = index < 0 ? null : keys [i ].substring (index + 1 );
362362
363363 if (StringUtil .isName (origin ) == false || (alias != null && StringUtil .isName (alias ) == false )) {
364- throw new IllegalArgumentException ("GET请求: @column:value 中 value里面用 , 分割的每一项 column:alias 中 column必须是1个单词!如果有alias,则alias也必须为1个单词!" );
364+ throw new IllegalArgumentException ("GET请求: 预编译模式下 @column:value 中 value里面用 , 分割的每一项 column:alias 中 column必须是1个单词!如果有alias,则alias也必须为1个单词!" );
365365 }
366366 }
367367 }
You can’t perform that action at this time.
0 commit comments