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
266 B
C#
10 lines
266 B
C#
namespace TLSharp.Core.Network.Exceptions
|
|
{
|
|
internal class UserMigrationException : DataCenterMigrationException
|
|
{
|
|
internal UserMigrationException(int dc)
|
|
: base($"User located on a different DC: {dc}.", dc)
|
|
{
|
|
}
|
|
}
|
|
} |