13 lines
298 B
C#
13 lines
298 B
C#
![]() |
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.")
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|