James 7 年 前
コミット
59b7017051
1 ファイル変更2 行追加0 行削除
  1. 2 0
      src/main/java/com/jfinal/core/ActionHandler.java

+ 2 - 0
src/main/java/com/jfinal/core/ActionHandler.java

@@ -137,6 +137,8 @@ public class ActionHandler extends Handler {
 		String msg = null;
 		String msg = null;
 		if (errorCode == 404) {
 		if (errorCode == 404) {
 			msg = "404 Not Found: ";
 			msg = "404 Not Found: ";
+		} else if (errorCode == 400) {
+			msg = "40 Bad request: ";
 		} else if (errorCode == 401) {
 		} else if (errorCode == 401) {
 			msg = "401 Unauthorized: ";
 			msg = "401 Unauthorized: ";
 		} else if (errorCode == 403) {
 		} else if (errorCode == 403) {