* @param constantName - имя константы
* @return OCConstantManager
* @throws JIException
*/
public OCConstantManager getConstant(String constantName) throws JIException {
OCConstantCollection collection = getConstantsCollection();
try {
return collection.getConstant(constantName);
} catch (JIException e) {
getErrorListener().onError(this, e);
throw e;
}
}