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