HBASE-19434 create_namespace command for existing namespace does not throw useful error message

This commit is contained in:
tedyu 2017-12-13 16:00:33 -08:00
parent eebff56fe6
commit 104afd74a6
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ public class NamespaceExistException extends DoNotRetryIOException {
}
public NamespaceExistException(String namespace) {
super(namespace);
super("Namespace " + namespace + " already exists");
}
}