registerJoinPoint(PointcutType.CALL, system, methodInfo, withinInfo, joinPointMetaDataMap);
break;
case JoinPointType.CONSTRUCTOR_EXECUTION:
Constructor wrapperConstructor = AspectRegistry.getConstructorTuple(declaringClass, joinPointHash)
.getWrapperConstructor();
ConstructorInfo constructorInfo = JavaConstructorInfo.getConstructorInfo(wrapperConstructor);
registerJoinPoint(
PointcutType.EXECUTION, system, constructorInfo, constructorInfo/*AVAJ*/, joinPointMetaDataMap
);
break;
case JoinPointType.CONSTRUCTOR_CALL: