aboutsummaryrefslogtreecommitdiff
path: root/BackEnd/Timeline/Services
diff options
context:
space:
mode:
Diffstat (limited to 'BackEnd/Timeline/Services')
-rw-r--r--BackEnd/Timeline/Services/Timeline/TimelinePostService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/BackEnd/Timeline/Services/Timeline/TimelinePostService.cs b/BackEnd/Timeline/Services/Timeline/TimelinePostService.cs
index 40f226ce..644e989f 100644
--- a/BackEnd/Timeline/Services/Timeline/TimelinePostService.cs
+++ b/BackEnd/Timeline/Services/Timeline/TimelinePostService.cs
@@ -55,9 +55,9 @@ namespace Timeline.Services.Timeline
});
}
- private static EntityNotExistException CreatePostDeletedException(long timelineId, long postId)
+ private static EntityDeletedException CreatePostDeletedException(long timelineId, long postId)
{
- return new EntityNotExistException(EntityTypes.TimelinePost, new Dictionary<string, object>
+ return new EntityDeletedException(EntityTypes.TimelinePost, new Dictionary<string, object>
{
["timeline-id"] = timelineId,
["post-id"] = postId,