try {
Class paramClass = Class.forName(className);
methodParams[i] = paramClass;
} catch (ClassNotFoundException cnfE) {
throw (new ReflectionException(cnfE,
"Parameter type/class not found for operation"
+ methodName
+ " in MBean "
+ getMBeanName()));
}
}
}
m = this.getClass().getMethod(methodName, methodParams);
} catch(NoSuchMethodException noSuchE) {
throw (new ReflectionException(noSuchE,
"Operation "
+ methodName
+ " does not exist in MBean"
+ getMBeanName()));
} catch(SecurityException se) {
throw (new ReflectionException(se));
}
return (m);
}