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