13 lines
279 B
PHP
13 lines
279 B
PHP
<?php
|
|
/**
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT (see the LICENSE file)
|
|
*/
|
|
|
|
namespace WP_Rocket\Dependencies\Psr\Container;
|
|
|
|
/**
|
|
* No entry was found in the container.
|
|
*/
|
|
interface NotFoundExceptionInterface extends ContainerExceptionInterface
|
|
{
|
|
}
|