add custom exception for item not found

This commit is contained in:
Rev 2021-10-10 13:08:04 +09:00
parent 4491fe2c99
commit a2be16fe79

View File

@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use Exception;
class ItemNotFoundException extends Exception
{
}