-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
101 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
includes/Core/Validation/Exception/Invalid_Report_Dimensions_Exception.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/** | ||
* Class Google\Site_Kit\Core\Validation\Exception\Invalid_Report_Dimensions_Exception | ||
* | ||
* @package Google\Site_Kit\Core\Validation\Exception | ||
* @copyright 2022 Google LLC | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 | ||
* @link https://sitekit.withgoogle.com | ||
*/ | ||
|
||
namespace Google\Site_Kit\Core\Validation\Exception; | ||
|
||
use DomainException; | ||
|
||
/** | ||
* Exception thrown when dimensions are invalid for a report request. | ||
* | ||
* @since n.e.x.t | ||
* @access private | ||
* @ignore | ||
*/ | ||
class Invalid_Report_Dimensions_Exception extends DomainException { | ||
|
||
} |
24 changes: 24 additions & 0 deletions
24
includes/Core/Validation/Exception/Invalid_Report_Metrics_Exception.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
/** | ||
* Class Google\Site_Kit\Core\Validation\Exception\Invalid_Report_Metrics_Exception | ||
* | ||
* @package Google\Site_Kit\Core\Validation\Exception | ||
* @copyright 2022 Google LLC | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 | ||
* @link https://sitekit.withgoogle.com | ||
*/ | ||
|
||
namespace Google\Site_Kit\Core\Validation\Exception; | ||
|
||
use DomainException; | ||
|
||
/** | ||
* Exception thrown when metrics are invalid for a report request. | ||
* | ||
* @since n.e.x.t | ||
* @access private | ||
* @ignore | ||
*/ | ||
class Invalid_Report_Metrics_Exception extends DomainException { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters