String oprName = name.toUpperCase();
Class oprClass = Class.forName(CN + oprName);
FzyOperator o = (infosapient.opr.FzyOperator) oprClass.newInstance();
return o;
} catch (ClassNotFoundException cnfe) {
throw new FzySystemException("Invalid name: " + name + "; Appropriate operator class not found. " + cnfe.getMessage());
} catch (InstantiationException ie) {
throw new FzySystemException("Instantiation exception when trying to create: " + name + " as a fzyoperator.");
} catch (IllegalAccessException iae) {
throw new FzySystemException("Illegal Access exception encountered when attempting to instantiate: " + name + "; " + iae.getMessage());
}
}