CPF/CPF.ReoGrid/CircularReferenceException.cs

13 lines
257 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
[Serializable]
public class CircularReferenceException : ReoGridException
{
public CircularReferenceException() : base("The referenced cell of a refereced range is contained in the range itself.")
{
}
}
}