CPF/CPF.ReoGrid/OutlineIntersectedException.cs
2024-06-24 10:15:59 +08:00

13 lines
315 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineIntersectedException : OutlineException
{
public OutlineIntersectedException() : base("Specified outline intersects with another one. To group rows make sure that range of outline containing other outlines completely.")
{
}
}
}