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

13 lines
201 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class OutlineNotFoundException : OutlineException
{
public OutlineNotFoundException(int start, string msg) : base(msg)
{
}
}
}