git-subtree-dir: SiriusPress/wordpress
git-subtree-mainline: 6d2204413f383520b3f2ece120bc7324f2e88906
git-subtree-split: 1f173de885
16 lines
409 B
PHP
16 lines
409 B
PHP
<?php
|
|
|
|
namespace WordPress\AiClientDependencies\Http\Discovery\Exception;
|
|
|
|
use WordPress\AiClientDependencies\Http\Discovery\Exception;
|
|
/**
|
|
* Thrown when a discovery does not find any matches.
|
|
*
|
|
* @final do NOT extend this class, not final for BC reasons
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
/* final */
|
|
class NotFoundException extends \RuntimeException implements Exception
|
|
{
|
|
}
|