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

13 lines
232 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineTooMuchException : OutlineException
{
public OutlineTooMuchException() : base("Number of outline levels reached the maximum levels 10.")
{
}
}
}