提交 39669631 编写于 作者: T terrymanu

Merge pull request #8 from bohrqiu/master

修复异常被抛弃bug
......@@ -29,6 +29,10 @@ public class ShardingJdbcException extends RuntimeException {
public ShardingJdbcException(final String errorMessage, final Object... args) {
super(String.format(errorMessage, args));
}
public ShardingJdbcException(final String message, final Exception cause) {
super(message,cause);
}
public ShardingJdbcException(final Exception cause) {
super(cause);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册