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