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