mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
feat: IcdXmlException exposes LineNumber and LinePosition
This commit is contained in:
parent
b915401109
commit
6201184fab
1 changed files with 6 additions and 2 deletions
|
|
@ -9,8 +9,12 @@ namespace ICD.Common.Utils.Xml
|
||||||
{
|
{
|
||||||
public sealed class IcdXmlException : Exception
|
public sealed class IcdXmlException : Exception
|
||||||
{
|
{
|
||||||
private int m_LineNumber;
|
private readonly int m_LineNumber;
|
||||||
private int m_LinePosition;
|
private readonly int m_LinePosition;
|
||||||
|
|
||||||
|
public int LineNumber { get { return m_LineNumber; } }
|
||||||
|
|
||||||
|
public int LinePosition { get { return m_LinePosition; } }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Constructor.
|
/// Constructor.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue