mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-13 07:00:08 +01:00
10 lines
158 B
PHP
10 lines
158 B
PHP
<?php
|
|
|
|
namespace Psr\Container;
|
|
|
|
/**
|
|
* No entry was found in the container.
|
|
*/
|
|
interface NotFoundExceptionInterface extends ContainerExceptionInterface
|
|
{
|
|
}
|