■ Exception 클래스를 사용해 전체 예외 메시지를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
#region 전체 예외 메시지 구하기 - GetFullExceptionMessage(exception) /// <summary> /// 전체 예외 메시지 구하기 /// </summary> /// <param name="exception">예외</param> /// <returns>전체 예외 메시지</returns> public string GetFullExceptionMessage(Exception exception) { IEnumerable<Exception> exceptionEnumerable = GetAllExceptionEnumerable(exception); IEnumerable<string> messageEnumerable = exceptionEnumerable.Where(e => !string.IsNullOrWhiteSpace(e.Message)) .Select(e => e.Message.Trim()); string totalMessage = string.Join(Environment.NewLine, messageEnumerable); return totalMessage; } #endregion #region 모든 예외 열거 가능형 구하기 - GetAllExceptionEnumerable(exception) /// <summary> /// 모든 예외 열거 가능형 구하기 /// </summary> /// <param name="exception">예외</param> /// <returns>모든 예외 열거 가능형</returns> private IEnumerable<Exception> GetAllExceptionEnumerable(Exception exception) { yield return exception; if(exception is AggregateException aggregateException) { foreach(Exception innerEx in aggregateException.InnerExceptions.SelectMany(e => GetAllExceptionEnumerable(e))) { yield return innerEx; } } else if(exception.InnerException != null) { foreach(Exception innerException in GetAllExceptionEnumerable(exception.InnerException)) { yield return innerException; } } } #endregion |