diff options
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)
|