AspNet5.Controllers.TestExceptionController.GetWithCustomException C# (CSharp) 메소드

GetWithCustomException() 개인적인 메소드

private GetWithCustomException ( ) : IEnumerable
리턴 IEnumerable
        public IEnumerable<string> GetWithCustomException()
        {
            _logger.LogInformation("Executing Http Get before exception");
            throw new CustomException("Yes a great exception");
        }