CPF/CPF.ReoGrid/NoPrintableContentException.cs
2024-06-24 10:15:59 +08:00

17 lines
321 B
C#

using System;
namespace CPF.ReoGrid
{
[Serializable]
public class NoPrintableContentException : ReoGridPrintException
{
public NoPrintableContentException() : this("No content was contained in the spreadsheet could be printed.")
{
}
public NoPrintableContentException(string msg) : base(msg)
{
}
}
}