Abp模块
abp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
297 B

namespace Sanhe.Abp.Wrapper;
/// <summary>
/// 异常包装处理器接口。
/// </summary>
public interface IExceptionWrapHandler
{
/// <summary>
/// 包装
/// </summary>
/// <param name="context">异常包装上下文</param>
void Wrap(ExceptionWrapContext context);
}