TLSharp/TLSharp.Core/Exceptions/CloudPasswordNeededException.cs

9 lines
199 B
C#
Raw Normal View History

using System;
namespace TLSharp.Core.Exceptions
{
public class CloudPasswordNeededException : Exception
{
internal CloudPasswordNeededException(string msg) : base(msg) { }
}
}