CPF/CPF.ReoGrid/OutlineTooMuchException.cs

13 lines
232 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineTooMuchException : OutlineException
{
public OutlineTooMuchException() : base("Number of outline levels reached the maximum levels 10.")
{
}
}
}