PluginProbe
AI / 0.2.0
AI v0.2.0
1.3.0 1.2.0 1.1.0 1.0.2 1.0.1 1.0.0 0.9.0 trunk 0.1.1 0.2.0 0.2.1 0.3.0 0.3.1 0.4.0 0.4.1 0.5.0 0.6.0 0.7.0 0.8.0
ai / includes / Exception / Invalid_Experiment_Metadata_Exception.php

Invalid_Experiment_Metadata_Exception.php in AI 0.2.0, at includes/Exception/Invalid_Experiment_Metadata_Exception.php

22 lines 359 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Exception for invalid experiment metadata.
4 *
5 * @package WordPress\AI\Exception
6 */
7
8 declare( strict_types=1 );
9
10 namespace WordPress\AI\Exception;
11
12 use InvalidArgumentException;
13
14 /**
15 * Exception thrown when experiment metadata is invalid.
16 *
17 * @since 0.1.0
18 */
19 class Invalid_Experiment_Metadata_Exception extends InvalidArgumentException {
20
21 }
22