Create NotFoundException

This commit is contained in:
2025-10-25 12:48:52 -04:00
parent e91a72117a
commit 865f50ad9b

View File

@@ -0,0 +1,13 @@
<?php
declare(strict_types=1);
namespace Potter\Aware;
use \Psr\Container\NotFoundExceptionInterface;
use \Potter\Throwable\Throwable;
final class NotFoundException extends Throwable implements NotFoundExceptionInterface
{
}