Smrf.NodeXL.ExcelTemplate.GraphMLFilesImporter.OnXmlException C# (CSharp) Method

OnXmlException() protected method

protected OnXmlException ( String sGraphMLFileName, XmlException oXmlException ) : void
sGraphMLFileName String
oXmlException System.Xml.XmlException
return void
    OnXmlException
    (
        String sGraphMLFileName,
        XmlException oXmlException
    )
    {
        Debug.Assert( !String.IsNullOrEmpty(sGraphMLFileName) );
        Debug.Assert(oXmlException != null);
        AssertValid();

        m_oInvalidGraphMLFileNames.Add( String.Format(
        
            "{0}: {1}"
            ,
            sGraphMLFileName,
            oXmlException.Message
            ) );
    }