10 lines
133 B
PHP
10 lines
133 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\PreordersBundle\Exception;
|
|
|
|
class NotFoundException extends \RuntimeException
|
|
{
|
|
}
|