init
This commit is contained in:
13
Common/DTS.Common/Exceptions/OutOfDataException.cs
Normal file
13
Common/DTS.Common/Exceptions/OutOfDataException.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace DTS.Common.Exceptions
|
||||
{
|
||||
public class OutOfDataException : Exception
|
||||
{
|
||||
public long Index { get; private set; }
|
||||
public OutOfDataException(string ex, long index) : base(ex)
|
||||
{
|
||||
Index = index;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user