* @return OCExchangeManger
* @throws JIException
*/
public OCExchangePlanManager getExchangePlanManager(String managerName)
throws JIException {
OCExchangePlansCollection collection = getExchangePlansCollection();
try {
return collection.getExchangePlan(managerName);
} catch (JIException e) {
getErrorListener().onError(this, e);
throw e;
}
}