golden hour
/home/doctorbruno/.trash/google-site-kit.1/includes/Core/REST_API/Exception
⬆️ Go Up
Upload
File/Folder
Size
Actions
Invalid_Datapoint_Exception.php
1.08 KB
Del
OK
Invalid_Param_Exception.php
1.46 KB
Del
OK
Missing_Required_Param_Exception.php
1.5 KB
Del
OK
Edit: Invalid_Datapoint_Exception.php
<?php /** * Class Google\Site_Kit\Core\REST_API\Exception\Invalid_Datapoint_Exception * * @package Google\Site_Kit\Core\REST_API\Exception * @copyright 2021 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com * * phpcs:disable PHPCS.Commenting.RequireDocTagDescription -- Pre-existing violations; tracked for follow-up cleanup. */ namespace Google\Site_Kit\Core\REST_API\Exception; use Google\Site_Kit\Core\Contracts\WP_Errorable; use Exception; use WP_Error; /** * Exception thrown when a request to an invalid datapoint is made. * * @since 1.9.0 * @access private * @ignore */ class Invalid_Datapoint_Exception extends Exception implements WP_Errorable { const WP_ERROR_CODE = 'invalid_datapoint'; /** * Gets the WP_Error representation of this exception. * * @since 1.9.0 * * @return WP_Error */ public function to_wp_error() { return new WP_Error( static::WP_ERROR_CODE, __( 'Invalid datapoint.', 'google-site-kit' ), array( 'status' => 400, // Bad request. ) ); } }
Save