/// <summary>
 /// Instantiates a new instance of the
 /// <see cref="ExceptionPolicyEntry"/> class.
 /// </summary>
 internal ExceptionPolicyEntry(string policyName, ExceptionTypeData typeData, ConfigurationContext context)
 {
     this.policyName         = policyName;
     this.postHandlingAction = typeData.PostHandlingAction;
     this.typeDataName       = typeData.Name;
     this.factory            = new ExceptionHandlerFactory(context);
 }
 /// <summary>
 /// Instantiates a new instance of the 
 /// <see cref="ExceptionPolicyEntry"/> class.
 /// </summary>
 internal ExceptionPolicyEntry(string policyName, ExceptionTypeData typeData, ConfigurationContext context)
 {
     this.policyName = policyName;
     this.postHandlingAction = typeData.PostHandlingAction;
     this.typeDataName = typeData.Name;
     this.factory = new ExceptionHandlerFactory(context);
 }