File "invalid-tracked-action-exception.php"
Full Path: /home/ccipcixf/public_html/beta/wp-content/plugins/wordpress-seo/src/tracking/domain/exceptions/invalid-tracked-action-exception.php
File size: 443 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Tracking\Domain\Exceptions;
use Exception;
/**
* Exception for when there's an invalid tracked action.
*/
class Invalid_Tracked_Action_Exception extends Exception {
/**
* Constructor of the exception.
*/
public function __construct() {
parent::__construct( 'The tracked action is invalid', 400 );
}
}