diff options
author | crupest <crupest@outlook.com> | 2021-04-28 16:55:37 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-04-28 16:55:37 +0800 |
commit | db6629940e294b44d678e776ccce769a8ac715de (patch) | |
tree | 7be5ab09f40083f3c12c6e4beb27003161cb9704 /BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs | |
parent | cade46338cd3b3864948c278c5dd64e48fa4634e (diff) | |
download | timeline-db6629940e294b44d678e776ccce769a8ac715de.tar.gz timeline-db6629940e294b44d678e776ccce769a8ac715de.tar.bz2 timeline-db6629940e294b44d678e776ccce769a8ac715de.zip |
refactor: ...
Diffstat (limited to 'BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs')
-rw-r--r-- | BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs b/BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs new file mode 100644 index 00000000..28f56938 --- /dev/null +++ b/BackEnd/Timeline/Services/Token/UserTokenUserNotExistException.cs @@ -0,0 +1,16 @@ +using System;
+
+namespace Timeline.Services.Token
+{
+ [Serializable]
+ public class UserTokenUserNotExistException : UserTokenException
+ {
+ public UserTokenUserNotExistException() : base(Resource.ExceptionUserTokenUserNotExist) { }
+ public UserTokenUserNotExistException(string token) : base(token, Resource.ExceptionUserTokenUserNotExist) { }
+ public UserTokenUserNotExistException(string token, Exception inner) : base(token, Resource.ExceptionUserTokenUserNotExist, inner) { }
+
+ protected UserTokenUserNotExistException(
+ System.Runtime.Serialization.SerializationInfo info,
+ System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
+ }
+}
|