TLSharp/TLSharp.Core/Network/Exceptions/UserMigrationException.cs

10 lines
266 B
C#
Raw Normal View History

namespace TLSharp.Core.Network.Exceptions
{
internal class UserMigrationException : DataCenterMigrationException
{
internal UserMigrationException(int dc)
: base($"User located on a different DC: {dc}.", dc)
{
}
}
}