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) { } } }