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.
14 lines
297 B
14 lines
297 B
3 years ago
|
namespace Sanhe.Abp.Wrapper;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 异常包装处理器接口。
|
||
|
/// </summary>
|
||
|
public interface IExceptionWrapHandler
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 包装
|
||
|
/// </summary>
|
||
|
/// <param name="context">异常包装上下文</param>
|
||
|
void Wrap(ExceptionWrapContext context);
|
||
|
}
|