File "InvalidState.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/Exception/InvalidState.php
File size: 649 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Exception;

use InvalidArgumentException;

defined( 'ABSPATH' ) || exit;

/**
 * Class InvalidState
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Exception
 */
class InvalidState extends InvalidArgumentException implements GoogleListingsAndAdsException {

	/**
	 * Create a new instance of the exception when an invalid state is requested.
	 *
	 * @param string $state
	 *
	 * @return InvalidState
	 */
	public static function from_state( string $state ): InvalidState {
		return new static( sprintf( 'The state %s is not valid.', $state ) );
	}
}