mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-01 14:29:59 +01:00
Exceptions from MtProtoSender.cs to TLSharp.Core/Network/Exceptions Exceptions from TelegramClient.cs to TLSharp.Core/Exceptions
9 lines
199 B
C#
9 lines
199 B
C#
using System;
|
|
|
|
namespace TLSharp.Core.Exceptions
|
|
{
|
|
public class CloudPasswordNeededException : Exception
|
|
{
|
|
internal CloudPasswordNeededException(string msg) : base(msg) { }
|
|
}
|
|
} |