CPF/CPF.ReoGrid/FileFormatNotSupportException.cs

21 lines
369 B
C#
Raw Permalink Normal View History

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