提交 00b69ed7 authored 作者: Thomas Mueller's avatar Thomas Mueller

Wrap the exception, to show where it is thrown

上级 25327387
......@@ -1972,7 +1972,8 @@ public class Database implements DataHandler {
DbException b = backgroundException;
backgroundException = null;
if (b != null) {
throw b;
// wrap the exception, so we see it was thrown here
throw DbException.get(b.getErrorCode(), b);
}
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论