Newer
Older
ClosedXML / ClosedXML / Excel / CalcEngine / ExpressionParseException.cs
using System;
using System.Text;

namespace ClosedXML.Excel.CalcEngine
{
    /// <summary>
    /// The exception that is thrown when the strings to be parsed to an expression is invalid.
    /// </summary>
    public class ExpressionParseException : Exception
    {
        /// <summary>
        /// Initializes a new instance of the ExpressionParseException class with a 
        /// specified error message.
        /// </summary>
        /// <param name="message">The message that describes the error.</param>
        public ExpressionParseException(string message)
            : base(message)
        {
        }
    }
}