CPF/CPF.ReoGrid/CannotCreateCellBodyException.cs

17 lines
296 B
C#
Raw Permalink Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
[Serializable]
public class CannotCreateCellBodyException : ReoGridException
{
public CannotCreateCellBodyException(string msg) : base(msg)
{
}
public CannotCreateCellBodyException(string msg, Exception inner) : base(msg, inner)
{
}
}
}