* @param catalogName наименование справочника
* @return OCCatalogManager
* @throws JIException
*/
public OCCatalogManager getCatalogManager(String catalogName) throws JIException {
OCCatalogCollection collection = getCatalogCollection();
try {
OCCatalogManager manager = collection.getCatalog(catalogName);
return manager;
} catch (JIException e) {
getErrorListener().onError(this, e);
throw e;
}