mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Exceptions from MtProtoSender.cs to TLSharp.Core/Network/Exceptions Exceptions from TelegramClient.cs to TLSharp.Core/Exceptions
10 lines
280 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
} |