aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs')
-rw-r--r--Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs b/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs
deleted file mode 100644
index d2b48d4ae..000000000
--- a/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-namespace Jellyfin.Api.Models.ExceptionDtos
-{
- /// <summary>
- /// Exception Dto.
- /// Used for graceful handling of API exceptions.
- /// </summary>
- public class ExceptionDto
- {
- /// <summary>
- /// Gets or sets exception message.
- /// </summary>
- public string Message { get; set; }
- }
-}