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