Friendlier exceptions for Auth testing

This change also lets you write the auth code in the
app.config file without the need to recompile/debug.
This commit is contained in:
Andres G. Aragoneses 2016-10-31 00:15:10 +08:00
parent b0b58be25e
commit f062c0a7a1
4 changed files with 32 additions and 2 deletions

View file

@ -294,4 +294,9 @@ namespace TLSharp.Core
{
}
}
public class InvalidPhoneCodeException : Exception
{
internal InvalidPhoneCodeException(string msg) : base(msg) { }
}
}