mirror of
https://github.com/friendica/friendica
synced 2025-04-23 03:10:12 +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/InternalServerErrorException.php
Normal file
10
src/Network/HTTPException/InternalServerErrorException.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Network\HTTPException;
|
||||
|
||||
use Friendica\Network\HTTPException;
|
||||
|
||||
class InternalServerErrorException extends HTTPException
|
||||
{
|
||||
var $httpcode = 500;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue