CPF/CPF.ReoGrid/ReoGridException.cs

17 lines
268 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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)
{
}
}
}