viviel opened a new pull request #140:
URL: https://github.com/apache/incubator-tubemq/pull/140
Fix exception use
`Exception -> IllegalArgumentException`
Example
```
if (TStringUtils.isBlank(strTimeVal)) {
throw new Exception(strValName + " value is null or blank of "
+ ruleType + " limit rule!");
}
change to
if (TStringUtils.isBlank(strTimeVal)) {
throw new IllegalArgumentException(strValName + " value is null or blank
of "
+ ruleType + " limit rule!");
}
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]