提交 a632178c authored 作者: Noel Grandin's avatar Noel Grandin

fix throws clause

上级 44151a96
...@@ -364,13 +364,11 @@ public class TraceObject { ...@@ -364,13 +364,11 @@ public class TraceObject {
} }
/** /**
* Get and throw a SQL exception meaning this feature is not supported. * Get a SQL exception meaning this feature is not supported.
* *
* @param message the message * @param message the message
* @return never returns normally
* @throws SQLException the exception
*/ */
protected SQLException unsupported(String message) throws SQLException { protected SQLException unsupported(String message) {
try { try {
throw DbException.getUnsupportedException(message); throw DbException.getUnsupportedException(message);
} catch (Exception e) { } catch (Exception e) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论