feat: IcdXmlException exposes LineNumber and LinePosition

This commit is contained in:
Chris Cameron
2019-06-24 12:42:29 -04:00
parent b915401109
commit 6201184fab

View File

@@ -9,8 +9,12 @@ namespace ICD.Common.Utils.Xml
{
public sealed class IcdXmlException : Exception
{
private int m_LineNumber;
private int m_LinePosition;
private readonly int m_LineNumber;
private readonly int m_LinePosition;
public int LineNumber { get { return m_LineNumber; } }
public int LinePosition { get { return m_LinePosition; } }
/// <summary>
/// Constructor.