fix Context.error

This commit is contained in:
Dima Granetchi
2014-12-08 20:57:35 +02:00
parent 426411591f
commit 796af80da1
+1 -1
View File
@@ -65,7 +65,7 @@ class Bind {
var res = null;
try {
res = checkField(field);
if (res.error != null) throw res.error;
if (res.error != null) res.error.contextError();
} catch (e:FatalError) {
e.contextFatal();
} catch (e:bindx.Error) {