Newer
Older
ClosedXML / ClosedXML / Excel / CalcEngine / Exceptions / NullValueException.cs
@Francois Botha Francois Botha on 10 Aug 2017 800 bytes Initial implementation of CalcEngineExceptions
using System;

namespace ClosedXML.Excel.CalcEngine.Exceptions
{
    /// <summary>
    /// Because a space indicates an intersection, this error will
    /// occur if you insert a space instead of a comma(the union operator)
    /// between ranges used in function arguments.
    /// Corresponds to the #NULL! error in Excel
    /// </summary>
    /// <seealso cref="ClosedXML.Excel.CalcEngine.Exceptions.CalcEngineException" />
    internal class NullValueException : CalcEngineException
    {
        public NullValueException()
            : base()
        { }

        public NullValueException(string message)
            : base(message)
        { }

        public NullValueException(string message, Exception innerException)
            : base(message, innerException)
        { }

    }
}