14 lines
265 B
C#
14 lines
265 B
C#
using System;
|
|
|
|
namespace WaterCloud.Code
|
|
{
|
|
public static partial class Extensions
|
|
{
|
|
public static Exception GetOriginalException(this Exception ex)
|
|
{
|
|
if (ex.InnerException == null) return ex;
|
|
|
|
return ex.InnerException.GetOriginalException();
|
|
}
|
|
}
|
|
} |