diff options
author | crupest <crupest@outlook.com> | 2022-04-10 20:25:29 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-04-10 20:25:29 +0800 |
commit | 9d2056786a38558c2ecba4406e2ba172eb0c5597 (patch) | |
tree | e0b26da3fa0282a48c0bfcfc6be661482df14cc2 /BackEnd/Timeline/Services/EntityNotExistException.cs | |
parent | d260c3c3fa073d1a9d09b94c5c4749334e26ab9a (diff) | |
download | timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.tar.gz timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.tar.bz2 timeline-9d2056786a38558c2ecba4406e2ba172eb0c5597.zip |
...
Diffstat (limited to 'BackEnd/Timeline/Services/EntityNotExistException.cs')
-rw-r--r-- | BackEnd/Timeline/Services/EntityNotExistException.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BackEnd/Timeline/Services/EntityNotExistException.cs b/BackEnd/Timeline/Services/EntityNotExistException.cs index 6ae8442d..afebc68e 100644 --- a/BackEnd/Timeline/Services/EntityNotExistException.cs +++ b/BackEnd/Timeline/Services/EntityNotExistException.cs @@ -12,7 +12,7 @@ namespace Timeline.Services [Serializable]
public class EntityNotExistException : EntityException
{
- public EntityNotExistException() : base() { }
+ public EntityNotExistException(EntityType bookmarkTimeline) : base() { }
public EntityNotExistException(string? message) : base(message) { }
public EntityNotExistException(string? message, Exception? inner) : base(message, inner) { }
public EntityNotExistException(EntityType entityType, IDictionary<string, object>? constraints = null, string? message = null, Exception? inner = null)
|