using System; namespace CPF.ReoGrid { [Serializable] public class ReoGridPrintException : ReoGridException { public ReoGridPrintException(string msg) : this(msg, null) { } public ReoGridPrintException(string msg, Exception innerEx) : base(msg, innerEx) { } } }