# wordpress-seo/27.6/src/dashboard/domain/analytics-4/unexpected-response-exception.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 27.6. 20 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/dashboard/domain/analytics-4/unexpected-response-exception.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/27.6/raw/src/dashboard/domain/analytics-4/unexpected-response-exception.php
- Modified: 2026-01-20T12:23:48+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/27.6/code/src/dashboard/domain/analytics-4/unexpected-response-exception.php#L10-L20`.

```php
<?php

// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Dashboard\Domain\Analytics_4;

use Exception;

/**
 * Exception for when an Analytics 4 request returns with an unexpected response.
 */
class Unexpected_Response_Exception extends Exception {

	/**
	 * Constructor of the exception.
	 */
	public function __construct() {
		parent::__construct( 'The response from Google Site Kit did not have an expected format.', 400 );
	}
}

```
