Error Handling
<?php
declare(strict_types=1);
namespace App\Exception;
use Exception;
final class ItemExistsException extends Exception implements AppExceptionInterface
{
}
Last updated
<?php
declare(strict_types=1);
namespace App\Exception;
use Exception;
final class ItemExistsException extends Exception implements AppExceptionInterface
{
}
Last updated