using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Neo.Afx.Common { public class ExceptionHelper { public static string GetInnermostMessage(Exception ex) { if (ex.InnerException == null) { return ex.Message; } else { return GetInnermostMessage(ex.InnerException); } } } }