wp/wp-includes/Requests/src/Exception/Http/Status418.php
changeset 21 48c4eec2b7e6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wp/wp-includes/Requests/src/Exception/Http/Status418.php	Fri Sep 05 18:40:08 2025 +0200
@@ -0,0 +1,35 @@
+<?php
+/**
+ * Exception for 418 I'm A Teapot responses
+ *
+ * @link https://tools.ietf.org/html/rfc2324
+ *
+ * @package Requests\Exceptions
+ */
+
+namespace WpOrg\Requests\Exception\Http;
+
+use WpOrg\Requests\Exception\Http;
+
+/**
+ * Exception for 418 I'm A Teapot responses
+ *
+ * @link https://tools.ietf.org/html/rfc2324
+ *
+ * @package Requests\Exceptions
+ */
+final class Status418 extends Http {
+	/**
+	 * HTTP status code
+	 *
+	 * @var integer
+	 */
+	protected $code = 418;
+
+	/**
+	 * Reason phrase
+	 *
+	 * @var string
+	 */
+	protected $reason = "I'm A Teapot";
+}