26 lines
740 B
C#
26 lines
740 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Components.VisualComponents.Exceptions
|
||
{
|
||
/// <summary>
|
||
/// Исключение, вызываемое, когда шаблон не установлен
|
||
/// </summary>
|
||
public class NullPatternException : Exception
|
||
{
|
||
/// <summary>
|
||
/// Конструктор по умолчанию
|
||
/// </summary>
|
||
public NullPatternException() { }
|
||
|
||
/// <summary>
|
||
/// Констурктор с сообщением
|
||
/// </summary>
|
||
/// <param name="message"></param>
|
||
public NullPatternException(string message) : base(message) { }
|
||
}
|
||
}
|