Skip to content

Commit

Permalink
Merge pull request #8 from bohrqiu/master
Browse files Browse the repository at this point in the history
修复异常被抛弃bug
  • Loading branch information
terrymanu committed Feb 16, 2016
2 parents acefcdd + dc5d7d4 commit 3966963
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 3966963

Please sign in to comment.