• File: AiClientExceptionInterface.php
  • Full Path: /home/bazilika/public_html/wp-includes/php-ai-client/src/Common/Contracts/AiClientExceptionInterface.php
  • Date Modified: 05/22/2026 3:17 AM
  • File size: 343 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare (strict_types=1);
namespace WordPress\AiClient\Common\Contracts;

use Throwable;
/**
 * Base interface for all AI Client exceptions.
 *
 * This interface allows callers to catch all AI Client specific exceptions
 * with a single catch statement.
 *
 * @since 0.2.0
 */
interface AiClientExceptionInterface extends Throwable
{
}