mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-11-25 15:55:00 -05:00
15 lines
337 B
C#
15 lines
337 B
C#
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; }
|
|
}
|
|
}
|