16 lines
269 B
C#
16 lines
269 B
C#
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;
|
|
}
|
|
}
|
|
}
|