Move exceptions to own folder

This commit is contained in:
Brabli
2023-05-31 11:50:32 +01:00
parent ec4a730b53
commit 08d906260a
2 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<?php
declare(strict_types=1);
namespace Pcm\IconBundle\Exception;
class ColourNotFound extends \Exception {};

View File

@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
namespace Pcm\IconBundle\Exception;
class IconNotFound extends \Exception {};