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