13 lines
206 B
C#
13 lines
206 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class OperationOnReadonlyCellException : ReoGridException
|
|
{
|
|
public OperationOnReadonlyCellException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|