14 lines
291 B
C#
14 lines
291 B
C#
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;
|
|
}
|
|
}
|
|
}
|