19 lines
382 B
C#
19 lines
382 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Formula
|
|
{
|
|
[Serializable]
|
|
public class FormulaEvalutionException : ReoGridException
|
|
{
|
|
public Cell Cell { get; set; }
|
|
|
|
public FormulaEvalutionException(Cell cell, Exception innerException, string message) : base(message, innerException)
|
|
{
|
|
}
|
|
|
|
public FormulaEvalutionException(Cell cell, string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|