21 lines
369 B
C#
21 lines
369 B
C#
![]() |
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)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|