CPF/CPF.ReoGrid/ReoGridCellException.cs
2024-06-24 10:15:59 +08:00

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