Iceshrimp.NET/Iceshrimp.Frontend/Core/Miscellaneous/ApiException.cs
2024-07-04 18:02:00 +02:00

8 lines
No EOL
192 B
C#

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