13 lines
257 B
C#
13 lines
257 B
C#
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.")
|
|
{
|
|
}
|
|
}
|
|
}
|