public void addCatalog(String catalogId, Index index, List<Dictionary> dictionaries, boolean restrictQueryPermission,
boolean restrictIngestPermission) throws CatalogServiceException {
try {
this.communicationChannelClient.addCatalog(catalogId, index, dictionaries, restrictQueryPermission, restrictIngestPermission);
} catch (Exception e) {
throw new CatalogServiceException(e.getMessage(), e);
}
}