TLSharp/TLSharp.Core/Network/Exceptions/PhoneMigrationException.cs
CheshireCaat 366c937260 Exceptions moved to separate folders (#899)
Exceptions from MtProtoSender.cs to TLSharp.Core/Network/Exceptions
Exceptions from TelegramClient.cs to TLSharp.Core/Exceptions
2020-04-01 14:59:56 +04:30

10 lines
280 B
C#

namespace TLSharp.Core.Network.Exceptions
{
internal class PhoneMigrationException : DataCenterMigrationException
{
internal PhoneMigrationException(int dc)
: base ($"Phone number registered to a different DC: {dc}.", dc)
{
}
}
}