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