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

namespace ClosedXML.Excel.CalcEngine.Exceptions
{
    /// <summary>
    /// This error occurs when you delete a cell referred to in the
    /// formula or if you paste cells over the ones referred to in the
    /// formula.
    /// Corresponds to the #REF! error in Excel
    /// </summary>
    /// <seealso cref="ClosedXML.Excel.CalcEngine.Exceptions.CalcEngineException" />
    internal class CellReferenceException : CalcEngineException
    {
        public CellReferenceException()
            : base()
        { }

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

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

    }
}