mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-02 14:59:58 +01:00
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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|