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