提交 da87046d authored 作者: Thomas Mueller's avatar Thomas Mueller

The wrong object was casted.

上级 29aba6e6
......@@ -227,7 +227,7 @@ public class Message {
public static SQLException convert(Throwable e, String sql) {
SQLException e2 = convert(e);
if (e2 instanceof JdbcSQLException) {
((JdbcSQLException) e).setSQL(sql);
((JdbcSQLException) e2).setSQL(sql);
}
return e2;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论