X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FLenghtRequiredException.php;h=8a827626e6a2d39bdf5193e3cf41bc6b3da6aaee;hb=3842f02b021f2f32dbe6707c22af5760c3353dfa;hp=dd952b06461b37b552a94e43e1db4e5ce737ecd8;hpb=5a0f33dca061ef544d5985fd019c681db63a5534;p=friendica.git diff --git a/src/Network/HTTPException/LenghtRequiredException.php b/src/Network/HTTPException/LenghtRequiredException.php index dd952b0646..8a827626e6 100644 --- a/src/Network/HTTPException/LenghtRequiredException.php +++ b/src/Network/HTTPException/LenghtRequiredException.php @@ -1,10 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class LenghtRequiredException extends HTTPException +{ + protected $code = 411; + protected $httpdesc = 'Length Required'; + protected $explanation = 'The request did not specify the length of its content, which is required by the requested resource.'; +}