17 lines
394 B
C#
17 lines
394 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Formula
|
|
{
|
|
[Serializable]
|
|
public class FormulaParameterMismatchException : FormulaEvalutionException
|
|
{
|
|
public FormulaParameterMismatchException(Cell cell) : base(cell, "Call function with mismatched parameters in cell " + cell.Address)
|
|
{
|
|
}
|
|
|
|
public FormulaParameterMismatchException(Cell cell, string message) : base(cell, message)
|
|
{
|
|
}
|
|
}
|
|
}
|