Iceshrimp.NET/Iceshrimp.Frontend/Core/Miscellaneous/ApiException.cs

8 lines
No EOL
188 B
C#

using Iceshrimp.Shared.Schemas;
namespace Iceshrimp.Frontend.Core.Miscellaneous;
internal class ApiException(ErrorResponse error) : Exception
{
public ErrorResponse Response => error;
}