System.Configuration.ConfigurationErrorsException.GetInnerException C# (CSharp) Method

GetInnerException() static private method

static private GetInnerException ( ConfigurationException e ) : Exception
e ConfigurationException
return System.Exception
        static private Exception GetInnerException(ConfigurationException e) {
            if (e != null) {
                return e.InnerException;
            }

            return null;
        }