21 lines
448 B
C#
21 lines
448 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace Components.Exceptions
|
||
{
|
||
public class PhoneException : Exception
|
||
{
|
||
public PhoneException() { }
|
||
|
||
/// <summary>
|
||
/// Конструктор с сообщением ошибки
|
||
/// </summary>
|
||
public PhoneException(string message) : base(message)
|
||
{
|
||
}
|
||
}
|
||
}
|