mirror of
https://github.com/friendica/friendica
synced 2025-04-23 18:30:11 +00:00
Add HTTPException class files
This commit is contained in:
parent
fd8b9deaaf
commit
b41bf77ec8
21 changed files with 223 additions and 0 deletions
10
src/Network/HTTPException/TooManyRequestsException.php
Normal file
10
src/Network/HTTPException/TooManyRequestsException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class TooManyRequestsException extends HTTPException
|
||||
{
|
||||
var $httpcode = 429;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue