HEX
Server: Apache/2.4.54 (Debian)
System: Linux a5825d2beacc 4.15.0-197-generic #208-Ubuntu SMP Tue Nov 1 17:23:37 UTC 2022 x86_64
User: root (0)
PHP: 8.1.14
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/wordpress-seo/inc/exceptions/class-invalid-indexable-exception.php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Internals
 */

/**
 * Class WPSEO_Invalid_Indexable_Exception
 */
class WPSEO_Invalid_Indexable_Exception extends InvalidArgumentException {

	/**
	 * Creates an invalid indexable exception.
	 *
	 * @param int $id The ID that was passed.
	 *
	 * @return WPSEO_Invalid_Indexable_Exception The exception.
	 */
	public static function non_existing_indexable( $id ) {
		return new self(
			sprintf(
				/* translators: %1$s expands to the indexable's ID. */
				__( 'Indexable with ID `%1$s` does not exist', 'wordpress-seo' ),
				$id
			)
		);
	}

	/**
	 * Creates an invalid POST request exception.
	 *
	 * @param int $id The ID that was passed.
	 *
	 * @return WPSEO_Invalid_Indexable_Exception The exception.
	 */
	public static function invalid_post_request( $id ) {
		return new self(
			sprintf(
				/* translators: %1$s expands to the indexable's ID. */
				__( 'Invalid POST request. Meta values already exist for object with ID %1$s.', 'wordpress-seo' ),
				$id
			)
		);
	}
}