using System; namespace CPF.ReoGrid { [Serializable] public abstract class ReoGridCellException : Exception { public CellPosition Pos { get; set; } public ReoGridCellException(CellPosition pos) { this.Pos = pos; } } }