using NCC.Dependency; using System.Collections.Generic; using System.Reflection; namespace NCC.FriendlyException { /// /// 方法异常类 /// [SuppressSniffer] internal sealed class MethodIfException { /// /// 出异常的方法 /// public MethodBase ErrorMethod { get; set; } /// /// 异常特性 /// public IEnumerable IfExceptionAttributes { get; set; } } }