namespace MrGameEng.Formulas;
///
/// Thrown when a cannot be lexed or parsed, or when a compiled formula
/// references a variable the context cannot resolve at evaluation time.
///
public sealed class FormulaException : Exception
{
/// Creates the exception with a human-readable .
public FormulaException(string message)
: base(message) { }
}