X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FBadRequestException.php;h=41b7714613514762172525aa45924b46574bc66b;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=23e59b3ca24189a1c4fc559463cabb1e3c6c14f8;hpb=5a0f33dca061ef544d5985fd019c681db63a5534;p=friendica.git diff --git a/src/Network/HTTPException/BadRequestException.php b/src/Network/HTTPException/BadRequestException.php index 23e59b3ca2..41b7714613 100644 --- a/src/Network/HTTPException/BadRequestException.php +++ b/src/Network/HTTPException/BadRequestException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class BadRequestException extends HTTPException +{ + protected $code = 400; + protected $httpdesc = 'Bad Request'; + protected $explanation = 'The server cannot or will not process the request due to an apparent client error.'; +}