[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/php-ai-client/src/Common/Exception/ -> InvalidArgumentException.php (source)

   1  <?php
   2  
   3  declare (strict_types=1);
   4  namespace WordPress\AiClient\Common\Exception;
   5  
   6  use WordPress\AiClient\Common\Contracts\AiClientExceptionInterface;
   7  /**
   8   * Exception thrown when an invalid argument is provided.
   9   *
  10   * This extends PHP's built-in InvalidArgumentException while implementing
  11   * the AI Client exception interface for consistent catch handling.
  12   *
  13   * @since 0.2.0
  14   */
  15  class InvalidArgumentException extends \InvalidArgumentException implements AiClientExceptionInterface
  16  {
  17  }


Generated : Sat Jun 13 09:38:55 2026 Cross-referenced by PHPXref