CPF/CPF.ReoGrid/OutlineIntersectedException.cs

13 lines
315 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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.")
{
}
}
}