aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services/User/PasswordService.cs
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-04-27 19:42:06 +0800
committercrupest <crupest@outlook.com>2021-04-27 19:42:06 +0800
commit414d547753f9d7b534b3a4dbc618b5284aaa1a87 (patch)
treee2940d0c3fb5b57f268d1198e2b0ce8d07fe0a54 /BackEnd/Timeline/Services/User/PasswordService.cs
parentac309245d21f16c06abe2d1d9bb260e094d0805e (diff)
downloadtimeline-414d547753f9d7b534b3a4dbc618b5284aaa1a87.tar.gz
timeline-414d547753f9d7b534b3a4dbc618b5284aaa1a87.tar.bz2
timeline-414d547753f9d7b534b3a4dbc618b5284aaa1a87.zip
chore: Clean codes.
Diffstat (limited to 'BackEnd/Timeline/Services/User/PasswordService.cs')
-rw-r--r--BackEnd/Timeline/Services/User/PasswordService.cs2
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,