Cone.Core.ConeTestFailure.GetNestedStackFrames C# (CSharp) 메소드

GetNestedStackFrames() 정적인 개인적인 메소드

static private GetNestedStackFrames ( Exception e ) : IEnumerable
e System.Exception
리턴 IEnumerable
		static IEnumerable<StackFrame> GetNestedStackFrames(Exception e) => 
			e == null 
			? Enumerable.Empty<StackFrame>() 
			: GetNestedStackFrames(e.InnerException).Concat(new StackTrace(e, 0, true).GetFrames() ?? Enumerable.Empty<StackFrame>());
	}