Commit 39669631 authored by terrymanu's avatar terrymanu
Browse files

Merge pull request #8 from bohrqiu/master

修复异常被抛弃bug
parents acefcdd3 dc5d7d49
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@ public class ShardingJdbcException extends RuntimeException {
        super(String.format(errorMessage, args));
    }

    public ShardingJdbcException(final String message, final Exception cause) {
        super(message,cause);
    }
    
    public ShardingJdbcException(final Exception cause) {
        super(cause);
    }