X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FNotImplementedException.php;h=bb6368161647174e6abf80d89c157bd84f4b1e9d;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=76cb5d42065defb003b515d320471121db1db183;hpb=c9cce8492e5b2607b2a092474d1de4d188b7a2c9;p=friendica.git diff --git a/src/Network/HTTPException/NotImplementedException.php b/src/Network/HTTPException/NotImplementedException.php index 76cb5d4206..bb63681616 100644 --- a/src/Network/HTTPException/NotImplementedException.php +++ b/src/Network/HTTPException/NotImplementedException.php @@ -1,4 +1,23 @@ . + * + */ namespace Friendica\Network\HTTPException; @@ -6,5 +25,7 @@ use Friendica\Network\HTTPException; class NotImplementedException extends HTTPException { - protected $code = 501; + 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).'; }