mirror of
https://github.com/sochix/TLSharp.git
synced 2026-01-02 14:59:58 +01:00
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) { }
|
|||
|
|
}
|
|||
|
|
}
|