Пример #1
0
        private async Task <string> ConstructDetailsExceptionMessageAsync(Exception exception)
        {
            var retVal = await ExceptionMessageHelper.GetInnerMostExceptionMessageAsync(exception);

            retVal += $". {Constant.ErrorMessages.REFER_TO_ERRORS_TAB_FOR_MORE_DETAILS}";
            return(retVal);
        }
Пример #2
0
        private async Task <string> ConstructExceptionMessageAsync(Exception exception)
        {
            var retVal = await ExceptionMessageHelper.GetInnerMostExceptionMessageAsync(exception);

            return(retVal);
        }