CPF/CPF.ReoGrid/Formula/FormulaParseException.cs

16 lines
269 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Formula
{
[Serializable]
public class FormulaParseException : Exception
{
public int Index { get; private set; }
public FormulaParseException(string message, int index) : base(message)
{
this.Index = index;
}
}
}