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

13 lines
298 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineOutOfRangeException : OutlineException
{
public OutlineOutOfRangeException(int start, int count, string msg) : base("Specified outline cannot be added because it is out of the maximum available range.")
{
}
}
}