X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FNotImplementedException.php;h=bb6368161647174e6abf80d89c157bd84f4b1e9d;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=74bc8adf566aafdc102c11ac487010acfaee13b3;hpb=b41bf77ec8187b6c7bdc5229510032662901e416;p=friendica.git diff --git a/src/Network/HTTPException/NotImplementedException.php b/src/Network/HTTPException/NotImplementedException.php index 74bc8adf56..bb63681616 100644 --- a/src/Network/HTTPException/NotImplementedException.php +++ b/src/Network/HTTPException/NotImplementedException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class NotImplementedException extends HTTPException +{ + protected $code = 501; + protected $httpdesc = 'Not Implemented'; + protected $explanation = 'The server either does not recognize the request method, or it lacks the ability to fulfil the request. Usually this implies future availability (e.g., a new feature of a web-service API).'; +}