17 lines
268 B
C#
17 lines
268 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class ReoGridException : Exception
|
|
{
|
|
public ReoGridException(string msg) : base(msg)
|
|
{
|
|
}
|
|
|
|
public ReoGridException(string msg, Exception innerException) : base(msg, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|