TLSharp/TLSharp.Core/Exceptions/InvalidPhoneCodeException.cs

9 lines
193 B
C#
Raw Normal View History

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