16 lines
238 B
C#
16 lines
238 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public abstract class ReoGridCellException : Exception
|
|||
|
{
|
|||
|
public CellPosition Pos { get; set; }
|
|||
|
|
|||
|
public ReoGridCellException(CellPosition pos)
|
|||
|
{
|
|||
|
this.Pos = pos;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|