Files
DP44/Common/DTS.Common/.svn/pristine/f4/f4d2f7e983080a7dc2d963176851d6f1447e315a.svn-base
2026-04-17 14:55:32 -04:00

14 lines
290 B
Plaintext

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;
}
}
}