修改项目结构

This commit is contained in:
izory
2021-09-25 09:23:50 +08:00
parent 988ed714a7
commit b70ab3cd85
12 changed files with 14 additions and 13 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure.Extensions
{
public static partial class Extensions
{
public static Exception GetOriginalException(this Exception ex)
{
if (ex.InnerException == null) return ex;
return ex.InnerException.GetOriginalException();
}
}
}