protected Constructor<T> getConstructorForInvocationHandler(
Class<T> cls) {
try {
return cls.getConstructor(invocationHandlerClassArray);
} catch (NoSuchMethodException ex) {
throw new ClusterJFatalInternalException(
local.message("ERR_Get_Constructor", cls), ex);
} catch (SecurityException ex) {
throw new ClusterJFatalInternalException(
local.message("ERR_Get_Constructor", cls), ex);
}
}