mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-02 23:09:58 +01:00
Exceptions from MtProtoSender.cs to TLSharp.Core/Network/Exceptions Exceptions from TelegramClient.cs to TLSharp.Core/Exceptions
10 lines
267 B
C#
10 lines
267 B
C#
namespace TLSharp.Core.Network.Exceptions
|
|
{
|
|
internal class FileMigrationException : DataCenterMigrationException
|
|
{
|
|
internal FileMigrationException(int dc)
|
|
: base ($"File located on a different DC: {dc}.", dc)
|
|
{
|
|
}
|
|
}
|
|
} |