diff options
author | crupest <crupest@outlook.com> | 2021-04-27 19:42:06 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-27 19:42:06 +0800 |
commit | ab0fb093ee0769ff67b3b71efdfcccd34bd8683a (patch) | |
tree | 916e5471e57a26702ca52b7e338041ad3c56c134 /BackEnd/Timeline/Services/User/PasswordService.cs | |
parent | e619eac394b4e1c7a3cb0c5902b2776314c7b979 (diff) | |
download | timeline-ab0fb093ee0769ff67b3b71efdfcccd34bd8683a.tar.gz timeline-ab0fb093ee0769ff67b3b71efdfcccd34bd8683a.tar.bz2 timeline-ab0fb093ee0769ff67b3b71efdfcccd34bd8683a.zip |
chore: Clean codes.
Diffstat (limited to 'BackEnd/Timeline/Services/User/PasswordService.cs')
-rw-r--r-- | BackEnd/Timeline/Services/User/PasswordService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline/Services/User/PasswordService.cs b/BackEnd/Timeline/Services/User/PasswordService.cs index 5c2062dd..fc097492 100644 --- a/BackEnd/Timeline/Services/User/PasswordService.cs +++ b/BackEnd/Timeline/Services/User/PasswordService.cs @@ -18,7 +18,7 @@ namespace Timeline.Services.User public HashedPasswordBadFromatException(string message) : base(message) { }
public HashedPasswordBadFromatException(string message, Exception inner) : base(message, inner) { }
- public HashedPasswordBadFromatException(string hashedPassword, string reason, Exception? inner = null)
+ public HashedPasswordBadFromatException(string hashedPassword, string reason, Exception? inner = null)
: base(string.Format(CultureInfo.CurrentCulture, Resource.ExceptionHashedPasswordBadFormat, reason), inner) { HashedPassword = hashedPassword; }
protected HashedPasswordBadFromatException(
System.Runtime.Serialization.SerializationInfo info,
|