Newer
Older
<?php
namespace App\Exception;
use RuntimeException;
class RestaurantTypeNotFoundException extends RuntimeException
{
public function __construct()
{
parent::__construct("Restaurant type not found", ErrorCodeEnum::NotFound->value);
}
}