namespace com.azkoss.excellite { using System; /// ///Formula token for holding reference error. /// internal class RefErrFormulaToken : RefFormulaToken { // Methods /// ///Initializes a new instance of the class. /// ///The code. public RefErrFormulaToken(FormulaTokenCode code) : base(code) { } /// ///Convert formula token to string representation. /// ///formula token string representation public override string ToString() { return "#REF"; } } }