Files
ArgumentsToolkit/ArgumentsToolkit.Help/Exceptions/HelpGenerationException.cs

14 lines
503 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace ArgumentsToolkit.Help;
/// <summary>
/// Исключение, выбрасываемое при ошибках генерации справки.
/// </summary>
public class HelpGenerationException : Exception
{
/// <summary>
/// Создаёт новое исключение генерации справки.
/// </summary>
/// <param name="message">Сообщение об ошибке.</param>
public HelpGenerationException(string message) : base(message) { }
}