--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-includes/Requests/src/Exception/Http/Status511.php Fri Sep 05 18:40:08 2025 +0200
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Exception for 511 Network Authentication Required responses
+ *
+ * @link https://tools.ietf.org/html/rfc6585
+ *
+ * @package Requests\Exceptions
+ */
+
+namespace WpOrg\Requests\Exception\Http;
+
+use WpOrg\Requests\Exception\Http;
+
+/**
+ * Exception for 511 Network Authentication Required responses
+ *
+ * @link https://tools.ietf.org/html/rfc6585
+ *
+ * @package Requests\Exceptions
+ */
+final class Status511 extends Http {
+ /**
+ * HTTP status code
+ *
+ * @var integer
+ */
+ protected $code = 511;
+
+ /**
+ * Reason phrase
+ *
+ * @var string
+ */
+ protected $reason = 'Network Authentication Required';
+}