• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Yoast / wordpress-seo / 947a0514c8ae6e99811eb0fc52c9b5725363aedd

07 Oct 2025 12:20PM UTC coverage: 49.452%. First build
947a0514c8ae6e99811eb0fc52c9b5725363aedd

Pull #22615

github

pls78
Fix conditional exclusion
Pull Request #22615: Feature/re organize ai code

671 of 732 new or added lines in 41 files covered. (91.67%)

17323 of 35030 relevant lines covered (49.45%)

3.9 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ai/http-request/domain/exceptions/wp-request-exception.php
1
<?php
2
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
3
// phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded
4
namespace Yoast\WP\SEO\AI\HTTP_Request\Domain\Exceptions;
5

6
use Throwable;
7
/**
8
 * Class to manage an error response in wp_remote_*() requests.
9
 *
10
 * @phpcs:disable Yoast.NamingConventions.ObjectNameDepth.MaxExceeded
11
 */
12
class WP_Request_Exception extends Remote_Request_Exception {
13

14
        /**
15
         * WP_Request_Exception constructor.
16
         *
17
         * @param string          $message  The error message.
18
         * @param Throwable| null $previous The previously thrown exception.
19
         */
NEW
20
        public function __construct( $message = '', $previous = null ) {
×
NEW
21
                parent::__construct( $message, 400, 'WP_HTTP_REQUEST_ERROR', $previous );
×
22
        }
23
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc