# ai/0.2.0/includes/Exception/Invalid_Experiment_Exception.php

AI, version 0.2.0. 22 lines.

- Page: https://pluginprobe.com/plugins/ai/0.2.0/code/includes/Exception/Invalid_Experiment_Exception.php
- Raw: https://pluginprobe.com/plugins/ai/0.2.0/raw/includes/Exception/Invalid_Experiment_Exception.php
- Modified: 2025-12-02T07:45:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ai/0.2.0/code/includes/Exception/Invalid_Experiment_Exception.php#L10-L20`.

```php
<?php
/**
 * Exception for invalid experiment.
 *
 * @package WordPress\AI\Exception
 */

declare( strict_types=1 );

namespace WordPress\AI\Exception;

use InvalidArgumentException;

/**
 * Exception thrown when an experiment is invalid.
 *
 * @since 0.1.0
 */
class Invalid_Experiment_Exception extends InvalidArgumentException {

}

```
