🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:15:52 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Exception
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Exception
🔄 Refresh
✏️
Editing: InvalidState.php
Writable
<?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 ) ); } }
💾 Save Changes
❌ Cancel