You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
432 B
21 lines
432 B
using System;
|
|
|
|
namespace FastExcel
|
|
{
|
|
|
|
/// <summary>
|
|
/// Exception used during loading process of defined names
|
|
/// </summary>
|
|
public class DefinedNameLoadException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public DefinedNameLoadException(string message, Exception innerException = null)
|
|
: base(message, innerException)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|