13 lines
224 B
C#
13 lines
224 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class OutlineAlreadyDefinedException : ReoGridException
|
|||
|
{
|
|||
|
public OutlineAlreadyDefinedException() : base("Specified outline already exists.")
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|