private static IValidatorRule Parse(HandleErrorType optionalType, Dictionary <String, Object> objectStorage)
        //  throws CertificateValidationException
        {
            List <IValidatorRule> validatorRules = new List <IValidatorRule>();
            var filteredRules = optionalType.ExtensibleTypeData[0].ExtensibleType_Type_Group.ToList();

            foreach (var o in filteredRules)
            {
                validatorRules.Add(Parse(o, objectStorage));
            }

            return(new HandleErrorRule(validatorRules));
        }
 public HandleException (string attemptedHandle, HandleErrorType errorType)
 {
     this.attemptedHandle = attemptedHandle;
     this.errorType = errorType;
 }
Exemple #3
0
 public HandleException(string attemptedHandle, HandleErrorType errorType)
 {
     this.attemptedHandle = attemptedHandle;
     this.errorType       = errorType;
 }