コード例 #1
0
 public static void executeNamespace(
     Instance instance, ClientExec<MasterClientService.Client> exec)
     throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException {
   try {
     executeGeneric(instance, exec);
   } catch (TableNotFoundException e) {
     if (e.getCause() instanceof NamespaceNotFoundException)
       throw (NamespaceNotFoundException) e.getCause();
   }
 }