+ /**
+ * Get the desired HTTP status code for this exception.
+ */
+ public function getStatusCode(): int
+ {
+ return $this->status;
+ }
+
+ /**
+ * Get the desired HTTP headers for this exception.
+ */
+ public function getHeaders(): array
+ {
+ return [];
+ }
+