Browse Source

jfinal 4.3

James 6 years ago
parent
commit
9133a2c953
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/jfinal/template/expr/ast/FastFieldGetter.java

+ 1 - 1
src/main/java/com/jfinal/template/expr/ast/FastFieldGetter.java

@@ -49,7 +49,7 @@ public class FastFieldGetter extends FieldGetter {
 						if (proxy == null) {	
 							try {
 								proxy = createProxy(targetClass, fieldName);
-							} catch (Exception e) {
+							} catch (Throwable e) {
 								return null;
 							}
 							cache.putIfAbsent(targetClass, proxy);