mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-02 23:09:58 +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)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|