aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-21 09:09:05 -0600
committercrobibero <cody@robibe.ro>2020-04-21 09:09:05 -0600
commit3ef8448a518e673feae0c70c2682d60e4632c0cd (patch)
treef799ac747253fd4c1d8219ad50ba1db4ac35561d /Jellyfin.Api/Models/ExceptionDtos/ExceptionDto.cs
parent14361c68cf71bc810d282901a764d2f8d5858eea (diff)
Return to previous exception handle implementation
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; }
- }
-}