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.") { } } }