CPF/CPF.ReoGrid/OutlineOutOfRangeException.cs

13 lines
298 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
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.")
{
}
}
}