File: DynamicData\IDynamicValidatorException.cs
Project: ndp\fx\src\xsp\system\Extensions\System.Web.Extensions.csproj (System.Web.Extensions)
namespace System.Web.DynamicData {
    using System;
    using System.Collections.Generic;
    using System.Diagnostics.CodeAnalysis;
 
    [SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix",
        Justification = "Interface is intended for implementation by Exception classes.")]
    public interface IDynamicValidatorException {
 
        IDictionary<string, Exception> InnerExceptions { get; }
 
    }
 
}