17 lines
273 B
C#
17 lines
273 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
[Serializable]
|
|
public class ReoGridIOException : ReoGridException
|
|
{
|
|
public ReoGridIOException(string msg) : this(msg, null)
|
|
{
|
|
}
|
|
|
|
public ReoGridIOException(string msg, Exception innerEx) : base(msg, innerEx)
|
|
{
|
|
}
|
|
}
|
|
}
|