I sketched this test example:
static void Main(string[] args) { try { test(0,0); } catch (Exception e) { Console.WriteLine(e); throw new Exception("ttt", e); } } static void test(int a,int b) { var t=a / b; } For some reason, only the message ttt is shown.
In the previous VS, it was possible to call a modal window and examine the exception.
I know that in VS 2017 the modal window was replaced, however, an internal exception should be displayed there.
The idea should be something like this:
As you can see there is a Details button and with arrows you can switch between exceptions.

