X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FInternalServerErrorException.php;h=9d671cb2d57ddce1d15dbef9fe7528a5451cbb94;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=09c969419d22f8dcb24af91e6fef16780a257a34;hpb=5a0f33dca061ef544d5985fd019c681db63a5534;p=friendica.git diff --git a/src/Network/HTTPException/InternalServerErrorException.php b/src/Network/HTTPException/InternalServerErrorException.php index 09c969419d..9d671cb2d5 100644 --- a/src/Network/HTTPException/InternalServerErrorException.php +++ b/src/Network/HTTPException/InternalServerErrorException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class InternalServerErrorException extends HTTPException +{ + protected $code = 500; + protected $httpdesc = 'Internal Server Error'; + protected $explanation = 'An unexpected condition was encountered and no more specific message is suitable.'; +}