mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|