X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FUnauthorizedException.php;h=dfe8719f9f68d6c80e1f9da8333e0e78c4a19953;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=79e6114a9299f769815c24db0c1d60979214b0dc;hpb=b41bf77ec8187b6c7bdc5229510032662901e416;p=friendica.git diff --git a/src/Network/HTTPException/UnauthorizedException.php b/src/Network/HTTPException/UnauthorizedException.php index 79e6114a92..dfe8719f9f 100644 --- a/src/Network/HTTPException/UnauthorizedException.php +++ b/src/Network/HTTPException/UnauthorizedException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class UnauthorizedException extends HTTPException +{ + protected $code = 401; + protected $httpdesc = 'Unauthorized'; + protected $explanation = 'Authentication is required and has failed or has not yet been provided.'; +}