mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-11 18:54:55 +00:00
25 lines
563 B
C#
25 lines
563 B
C#
using System;
|
|
|
|
namespace ICD.Common.Utils.Xml
|
|
{
|
|
public sealed class IcdXmlException : Exception
|
|
{
|
|
private int m_LineNumber;
|
|
private int m_LinePosition;
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="message"></param>
|
|
/// <param name="inner"></param>
|
|
/// <param name="lineNumber"></param>
|
|
/// <param name="linePosition"></param>
|
|
public IcdXmlException(string message, Exception inner, int lineNumber, int linePosition)
|
|
: base(message, inner)
|
|
{
|
|
m_LineNumber = lineNumber;
|
|
m_LinePosition = linePosition;
|
|
}
|
|
}
|
|
}
|