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