X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FInternalServerErrorException.php;h=9d671cb2d57ddce1d15dbef9fe7528a5451cbb94;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=09c969419d22f8dcb24af91e6fef16780a257a34;hpb=4224209497a6c7f723ea2b4d989f99890bccc47f;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.'; +}