Improved exception message suggested by feti up on IRC

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@703218 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-10-09 17:57:35 +00:00
parent 89fd7417f7
commit de4573e592
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ public class HStoreKey implements WritableComparable {
throws ColumnNameParseException {
int index = getFamilyDelimiterIndex(column);
if (index <= 0) {
throw new ColumnNameParseException("No ':' delimiter between " +
throw new ColumnNameParseException("Missing ':' delimiter between " +
"column family and qualifier in the passed column name <" +
Bytes.toString(column) + ">");
}