CPF/CPF.ReoGrid/NoPrintableContentException.cs

17 lines
321 B
C#
Raw Normal View History

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