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