HBASE-10715 TimeRange has poorly formatted error message (Alex Newman)

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1576106 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Hsieh 2014-03-10 22:08:01 +00:00
parent 829c3725c7
commit 4eb9e5225d
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class TimeRange {
throws IOException {
if (minStamp < 0 || maxStamp < 0) {
throw new IllegalArgumentException("Timestamp cannot be negative. minStamp:" + minStamp
+ ", maxStamp" + maxStamp);
+ ", maxStamp:" + maxStamp);
}
if(maxStamp < minStamp) {
throw new IOException("maxStamp is smaller than minStamp");