mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
Exceptions from MtProtoSender.cs to TLSharp.Core/Network/Exceptions Exceptions from TelegramClient.cs to TLSharp.Core/Exceptions
9 lines
193 B
C#
9 lines
193 B
C#
using System;
|
|
|
|
namespace TLSharp.Core.Exceptions
|
|
{
|
|
public class InvalidPhoneCodeException : Exception
|
|
{
|
|
internal InvalidPhoneCodeException(string msg) : base(msg) { }
|
|
}
|
|
} |