X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FForbiddenException.php;h=5fc584507c724fc89f1183a3254139ae8fd918bb;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=66a063e137a47778099abdd1bd98e9e6b99300ce;hpb=29f7ebe307c22b275466390937b82ccb3820fb1c;p=friendica.git diff --git a/src/Network/HTTPException/ForbiddenException.php b/src/Network/HTTPException/ForbiddenException.php index 66a063e137..5fc584507c 100644 --- a/src/Network/HTTPException/ForbiddenException.php +++ b/src/Network/HTTPException/ForbiddenException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class ForbiddenException extends HTTPException { - var $httpcode = 403; -} \ No newline at end of file + protected $code = 403; + protected $httpdesc = 'Forbidden'; + protected $explanation = 'The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account.'; +}