using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Controls.Exceptions
{
public class CustomNumberException : Exception
{
///
/// Конструктор по умолчанию
///
public CustomNumberException() { }
///
/// Конструктор с сообщением ошибки
///
public CustomNumberException(string message) : base(message)
{
}
}
}