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