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