Uwaa/Pleroma/Models/PleromaException.cs

12 lines
245 B
C#
Raw Normal View History

2024-12-13 13:25:20 +01:00
namespace Uwaa.Pleroma;
2024-11-22 09:55:08 +01:00
public class PleromaException : Exception
{
[JsonPropertyName("error")]
public string Text { get; set; } = null!;
public override string Message => Text;
public override string ToString() => Text;
}