MasterClient.close(client);
}
}
} catch (ThriftSecurityException e) {
if (e.getCode().equals(SecurityErrorCode.TABLE_DOESNT_EXIST)) {
throw new TableNotFoundException(tableId, null, e.getMessage(), e);
}
log.debug("flush security exception on table id " + tableId);
throw new AccumuloSecurityException(e.user, e.code, e);
} catch (ThriftTableOperationException e) {
switch (e.getType()) {
case NOTFOUND:
throw new TableNotFoundException(e);
case OTHER:
default:
throw new AccumuloException(e.description, e);
}
} catch (Exception e) {