jiapeng 8 年之前
父節點
當前提交
5790f27c49
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      jfwUtil/src/main/java/org/jfw/util/exception/JfwBaseException.java

+ 2 - 0
jfwUtil/src/main/java/org/jfw/util/exception/JfwBaseException.java

@ -19,6 +19,8 @@ public class JfwBaseException extends Exception {
19 19
	 */
20 20
21 21
	private static final Map<Integer,String> reasons = new HashMap<Integer,String>();
22
	public static final int MIN_APP_ERROR_CODE=50000;
23
	public static final int MIN_LOGIC_ERROR_CODE = 60000;
22 24
	
23 25
	private static String convert(int code){
24 26
		String result = reasons .get(code);