ABP VS调试异常
Posted guxingy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABP VS调试异常相关的知识,希望对你有一定的参考价值。
原文:https://www.cnblogs.com/jiangchengbiao/p/9713020.html
在Application
层,添加如下代码即可
using Abp.Dependency;
using Abp.Events.Bus.Exceptions;
using Abp.Events.Bus.Handlers;
using System;
using System.Collections.Generic;
using System.Text;
namespace BIMMP
{
public class MyException : IEventHandler<AbpHandledExceptionData>, ITransientDependency
{
public void HandleEvent(AbpHandledExceptionData eventData)
{
throw eventData.Exception;
}
}
}
以上是关于ABP VS调试异常的主要内容,如果未能解决你的问题,请参考以下文章