🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 11:16:54 | 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: ApiNotReady.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Exception; defined( 'ABSPATH' ) || exit; /** * Class ApiNotReady * * Error messages generated in this class should be translated, as they are intended to be displayed * to end users. * * @since 1.12.0 * * @package Automattic\WooCommerce\GoogleListingsAndAds\Exception */ class ApiNotReady extends ExceptionWithResponseData { /** * Create a new instance of the exception when an API is not ready and the request needs to be retried. * * @param int $wait Time to wait in seconds. * * @return static */ public static function retry_after( int $wait ): ApiNotReady { return new static( __( 'Please retry the request after the indicated number of seconds.', 'google-listings-and-ads' ), 503, null, [ 'retry_after' => $wait, ] ); } }
💾 Save Changes
❌ Cancel