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

15 lines
232 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class NamedRangeNotFoundException : ReoGridException
{
public string Name { get; set; }
public NamedRangeNotFoundException(string msg) : base(msg)
{
}
}
}