TLSharp/TLSharp.Core/Network/Exceptions/DataCenterMigrationException.cs

17 lines
482 B
C#
Raw Normal View History

using System;
namespace TLSharp.Core.Network.Exceptions
{
internal abstract class DataCenterMigrationException : Exception
{
internal int DC { get; private set; }
private const string REPORT_MESSAGE =
" See: https://github.com/sochix/TLSharp#i-get-a-xxxmigrationexception-or-a-migrate_x-error";
protected DataCenterMigrationException(string msg, int dc) : base (msg + REPORT_MESSAGE)
{
DC = dc;
}
}
}