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