17 lines
296 B
C#
17 lines
296 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|