Get the InnerException August 2, 2022 Posted in C# try { } catch (Exception ex) { while (ex.InnerException != null) ex = ex.InnerException; throw ex; }