13 lines
216 B
C#
13 lines
216 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class ReferenceObjectNotAssociatedException : ReoGridException
|
|
{
|
|
public ReferenceObjectNotAssociatedException(string msg) : base(msg)
|
|
{
|
|
}
|
|
}
|
|
}
|