1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-08-06 08:37:30 +02:00

feat: introduce RateLimitException (#4199)

This commit is contained in:
Dag
2024-08-08 02:13:04 +02:00
committed by GitHub
parent 7073bb2f46
commit 9973f731df
6 changed files with 24 additions and 7 deletions

View File

@@ -1,5 +1,15 @@
<?php
/**
* Thrown by bridges
*/
final class RateLimitException extends \Exception
{
}
/**
* @internal Do not use this class in bridges
*/
class HttpException extends \Exception
{
public ?Response $response;