X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FForbiddenException.php;h=5fc584507c724fc89f1183a3254139ae8fd918bb;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=75622c4c86302687c2800a680db87af22034b047;hpb=adc720a7fcd9aebe5d3adf97ae139cd2a7b355ae;p=friendica.git diff --git a/src/Network/HTTPException/ForbiddenException.php b/src/Network/HTTPException/ForbiddenException.php index 75622c4c86..5fc584507c 100644 --- a/src/Network/HTTPException/ForbiddenException.php +++ b/src/Network/HTTPException/ForbiddenException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class ForbiddenException extends HTTPException +{ + 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.'; +}