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