TLSharp/TLSharp.Core/Network/Exceptions/PhoneMigrationException.cs

10 lines
280 B
C#
Raw Normal View History

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