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

This commit is contained in:
tedyu 2017-12-13 16:01:38 -08:00
parent d2ffd5d7ed
commit b682ea7c8a
1 changed files with 1 additions and 1 deletions

View File

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