17 lines
254 B
C#
17 lines
254 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public class WorkbookException : ReoGridException
|
|||
|
{
|
|||
|
public WorkbookException(string msg) : base(msg)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public WorkbookException(string msg, Exception ex) : base(msg, ex)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|