13 lines
243 B
C#
13 lines
243 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class InvalidReferenceException : ReoGridException
|
|
{
|
|
public InvalidReferenceException(string arg) : base("Reference from an address or name is invalid: " + arg)
|
|
{
|
|
}
|
|
}
|
|
}
|