using System; namespace CPF.ReoGrid { [Serializable] public class CellDataReadonlyException : OperationOnReadonlyCellException { public CellPosition CellPos { get; private set; } public CellDataReadonlyException(CellPosition pos) : base("Attempt to modify the data of read-only cell.") { this.CellPos = pos; } } }