<?php namespace App\Exception;
use Symfony\Component\HttpFoundation\Response;
enum RestaurantExceptionEnum: int {
case NotFound = Response::HTTP_NOT_FOUND;
}