Axiom.Demos.Browser.CommandLine.Program.BuildInnerExceptionString C# (CSharp) Method

BuildInnerExceptionString() private static method

private static BuildInnerExceptionString ( Exception innerException ) : string
innerException System.Exception
return string
        private static string BuildInnerExceptionString( Exception innerException )
        {
            string errMessage = string.Empty;

            errMessage += Environment.NewLine + " InnerException ";
            errMessage += Environment.NewLine + innerException.Message + Environment.NewLine + innerException.StackTrace;

            return errMessage;
        }