13 lines
195 B
C#
13 lines
195 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class RangeTooSmallException : RangeException
|
|
{
|
|
public RangeTooSmallException(RangePosition range) : base(range)
|
|
{
|
|
}
|
|
}
|
|
}
|