mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 21:24:58 +00:00
Created S# .sln and moved project to src folder
This commit is contained in:
24
ICD.Common/Utils/Xml/IcdXmlException.cs
Normal file
24
ICD.Common/Utils/Xml/IcdXmlException.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user