diff options
Diffstat (limited to 'Timeline/Services/BadPasswordException.cs')
-rw-r--r-- | Timeline/Services/BadPasswordException.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Timeline/Services/BadPasswordException.cs b/Timeline/Services/BadPasswordException.cs index ee8a42db..f609371d 100644 --- a/Timeline/Services/BadPasswordException.cs +++ b/Timeline/Services/BadPasswordException.cs @@ -6,11 +6,11 @@ namespace Timeline.Services [Serializable]
public class BadPasswordException : Exception
{
- public BadPasswordException() : base(Resources.Services.Exception.UserNotExistException) { }
+ public BadPasswordException() : base(Resources.Services.Exception.BadPasswordException) { }
public BadPasswordException(string message, Exception inner) : base(message, inner) { }
public BadPasswordException(string badPassword)
- : base(Log.Format(Resources.Services.Exception.UserNotExistException, ("Bad Password", badPassword)))
+ : base(Log.Format(Resources.Services.Exception.BadPasswordException, ("Bad Password", badPassword)))
{
Password = badPassword;
}
|